Struct prometheus::core::GenericCounter
source · [−]pub struct GenericCounter<P: Atomic> { /* private fields */ }
Expand description
The underlying implementation for Counter
and IntCounter
.
Implementations
sourceimpl<P: Atomic> GenericCounter<P>
impl<P: Atomic> GenericCounter<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 GenericCounter
with the name
and help
arguments.
sourcepub fn with_opts(opts: Opts) -> Result<Self>
pub fn with_opts(opts: Opts) -> Result<Self>
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
sourceimpl<P: Atomic> Clone for GenericCounter<P>
impl<P: Atomic> Clone for GenericCounter<P>
sourceimpl<P: Atomic> Collector for GenericCounter<P>
impl<P: Atomic> Collector for GenericCounter<P>
sourceimpl<P: Debug + Atomic> Debug for GenericCounter<P>
impl<P: Debug + Atomic> Debug for GenericCounter<P>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more