Struct substrate_prometheus_endpoint::Gauge [−]
pub struct Gauge<P> where
P: Atomic, { /* fields omitted */ }
Expand description
The underlying implementation for [Gauge
] and [IntGauge
].
Implementations
impl<P> GenericGauge<P> where
P: Atomic,
impl<P> GenericGauge<P> where
P: Atomic,
Create a GenericGauge
with the name
and help
arguments.
pub fn with_opts(opts: Opts) -> Result<GenericGauge<P>, Error>
pub fn with_opts(opts: Opts) -> Result<GenericGauge<P>, Error>
Create a GenericGauge
with the opts
options.
pub fn set(&self, v: <P as Atomic>::T)
pub fn set(&self, v: <P as Atomic>::T)
Set the gauge to an arbitrary value.
pub fn inc(&self)
pub fn inc(&self)
Increase the gauge by 1.
pub fn dec(&self)
pub fn dec(&self)
Decrease the gauge by 1.
pub fn add(&self, v: <P as Atomic>::T)
pub fn add(&self, v: <P as Atomic>::T)
Add the given value to the gauge. (The value can be negative, resulting in a decrement of the gauge.)
pub fn sub(&self, v: <P as Atomic>::T)
pub fn sub(&self, v: <P as Atomic>::T)
Subtract the given value from the gauge. (The value can be negative, resulting in an increment of the gauge.)
pub fn get(&self) -> <P as Atomic>::T
pub fn get(&self) -> <P as Atomic>::T
Return the gauge value.
Trait Implementations
impl<P> Clone for GenericGauge<P> where
P: Atomic,
impl<P> Clone for GenericGauge<P> where
P: Atomic,
pub fn clone(&self) -> GenericGauge<P>
pub fn clone(&self) -> GenericGauge<P>
Returns a copy of the value. Read more
Performs copy-assignment from source
. Read more
impl<P> Collector for GenericGauge<P> where
P: Atomic,
impl<P> Collector for GenericGauge<P> where
P: Atomic,
impl<P> Debug for GenericGauge<P> where
P: Debug + Atomic,
impl<P> Debug for GenericGauge<P> where
P: Debug + Atomic,
impl<P> Metric for GenericGauge<P> where
P: Atomic,
impl<P> Metric for GenericGauge<P> where
P: Atomic,
pub fn metric(&self) -> Metric
pub fn metric(&self) -> Metric
Return the protocol Metric.
Auto Trait Implementations
impl<P> RefUnwindSafe for GenericGauge<P> where
P: RefUnwindSafe,
impl<P> Send for GenericGauge<P>
impl<P> Sync for GenericGauge<P>
impl<P> Unpin for GenericGauge<P>
impl<P> UnwindSafe for GenericGauge<P> where
P: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more