Struct prometheus::core::GenericGauge
source · pub struct GenericGauge<P: Atomic> { /* private fields */ }
Implementations§
source§impl<P: Atomic> GenericGauge<P>
impl<P: Atomic> GenericGauge<P>
sourcepub fn new<S1: Into<String>, S2: Into<String>>(
name: S1,
help: S2,
) -> Result<Self>
pub fn new<S1: Into<String>, S2: Into<String>>( name: S1, help: S2, ) -> Result<Self>
Create a GenericGauge
with the name
and help
arguments.
sourcepub fn with_opts(opts: Opts) -> Result<Self>
pub fn with_opts(opts: Opts) -> Result<Self>
Create a GenericGauge
with the opts
options.
sourcepub fn add(&self, v: P::T)
pub fn add(&self, v: P::T)
Add the given value to the gauge. (The value can be negative, resulting in a decrement of the gauge.)
Trait Implementations§
source§impl<P: Atomic> Clone for GenericGauge<P>
impl<P: Atomic> Clone for GenericGauge<P>
source§impl<P: Atomic> Collector for GenericGauge<P>
impl<P: Atomic> Collector for GenericGauge<P>
Auto Trait Implementations§
impl<P> Freeze for GenericGauge<P>
impl<P> RefUnwindSafe for GenericGauge<P>where
P: RefUnwindSafe,
impl<P> Send for GenericGauge<P>
impl<P> Sync for GenericGauge<P>
impl<P> Unpin for GenericGauge<P>
impl<P> UnwindSafe for GenericGauge<P>where
P: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)