[][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> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.