pub struct GenericGauge<P>where
P: Atomic,{ /* private fields */ }
Implementations§
Source§impl<P> GenericGauge<P>where
P: Atomic,
impl<P> GenericGauge<P>where
P: Atomic,
Sourcepub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericGauge<P>, Error>
pub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericGauge<P>, Error>
Create a GenericGauge
with the name
and help
arguments.
Sourcepub fn with_opts(opts: Opts) -> Result<GenericGauge<P>, Error>
pub fn with_opts(opts: Opts) -> Result<GenericGauge<P>, Error>
Create a GenericGauge
with the opts
options.
Sourcepub fn add(&self, v: <P as Atomic>::T)
pub fn add(&self, v: <P as Atomic>::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> Clone for GenericGauge<P>where
P: Atomic,
impl<P> Clone for GenericGauge<P>where
P: Atomic,
Source§fn clone(&self) -> GenericGauge<P>
fn clone(&self) -> GenericGauge<P>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<P> Collector for GenericGauge<P>where
P: Atomic,
impl<P> Collector for GenericGauge<P>where
P: Atomic,
Source§impl<P> Debug for GenericGauge<P>
impl<P> Debug 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