[][src]Struct prometheus::core::GenericCounter

pub struct GenericCounter<P: Atomic> { /* fields omitted */ }

The underlying implementation for Counter and IntCounter.

Methods

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]

Increase the given value to the counter.

Panics

Panics in debug build if the value is < 0.

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> Collector for GenericCounter<P>[src]

impl<P: Atomic> Metric for GenericCounter<P>[src]

impl<P: Atomic> Clone for GenericCounter<P>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<P: Debug + Atomic> Debug for GenericCounter<P>[src]

Auto Trait Implementations

impl<P> Send for GenericCounter<P>

impl<P> Sync for GenericCounter<P>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]