[−][src]Struct prometheus::core::GenericCounter
The underlying implementation for Counter
and IntCounter
.
Implementations
impl<P: Atomic> GenericCounter<P>
[src]
pub fn new<S: Into<String>>(name: S, help: S) -> Result<Self>
[src]
Create a GenericCounter
with the name
and help
arguments.
pub fn with_opts(opts: Opts) -> Result<Self>
[src]
Create a GenericCounter
with the opts
options.
pub fn inc_by(&self, v: P::T)
[src]
pub fn inc(&self)
[src]
Increase the counter by 1.
pub fn get(&self) -> P::T
[src]
Return the counter value.
pub fn local(&self) -> GenericLocalCounter<P>
[src]
Return a GenericLocalCounter
for single thread usage.
Trait Implementations
impl<P: Atomic> Clone for GenericCounter<P>
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<P: Atomic> Collector for GenericCounter<P>
[src]
impl<P: Debug + Atomic> Debug for GenericCounter<P>
[src]
impl<P: Atomic> Metric for GenericCounter<P>
[src]
Auto Trait Implementations
impl<P> RefUnwindSafe for GenericCounter<P> where
P: RefUnwindSafe,
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,
P: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,