pub struct GenericCounter<P>where
P: Atomic,{ /* private fields */ }
Expand description
The underlying implementation for Counter
and IntCounter
.
Implementations§
Source§impl<P> GenericCounter<P>where
P: Atomic,
impl<P> GenericCounter<P>where
P: Atomic,
Sourcepub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericCounter<P>, Error>
pub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericCounter<P>, Error>
Create a GenericCounter
with the name
and help
arguments.
Sourcepub fn with_opts(opts: Opts) -> Result<GenericCounter<P>, Error>
pub fn with_opts(opts: Opts) -> Result<GenericCounter<P>, Error>
Create a GenericCounter
with the opts
options.
Sourcepub fn local(&self) -> GenericLocalCounter<P>
pub fn local(&self) -> GenericLocalCounter<P>
Return a GenericLocalCounter
for single thread usage.
Trait Implementations§
Source§impl<P> Clone for GenericCounter<P>where
P: Atomic,
impl<P> Clone for GenericCounter<P>where
P: Atomic,
Source§fn clone(&self) -> GenericCounter<P>
fn clone(&self) -> GenericCounter<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 GenericCounter<P>where
P: Atomic,
impl<P> Collector for GenericCounter<P>where
P: Atomic,
Source§impl<P> Debug for GenericCounter<P>
impl<P> Debug for GenericCounter<P>
Auto Trait Implementations§
impl<P> Freeze for GenericCounter<P>
impl<P> RefUnwindSafe for GenericCounter<P>where
P: RefUnwindSafe,
impl<P> Send for GenericCounter<P>
impl<P> Sync for GenericCounter<P>
impl<P> Unpin for GenericCounter<P>
impl<P> UnwindSafe for GenericCounter<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