Struct substrate_prometheus_endpoint::Counter
source · pub struct Counter<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>where
S1: Into<String>,
S2: Into<String>,
pub fn new<S1, S2>(name: S1, help: S2) -> Result<GenericCounter<P>, Error>where
S1: Into<String>,
S2: Into<String>,
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 more