Struct ore::metrics::DeleteOnDropGauge[][src]

pub struct DeleteOnDropGauge<'a, P, L> where
    P: Atomic,
    L: PromLabelsExt<'a>, 
{ inner: GenericGauge<P>, labels: L, vec: GenericGaugeVec<P>, _phantom: &'a PhantomData<()>, }
This is supported on crate feature metrics only.
Expand description

A GenericGauge wrapper that deletes its labels from the vec when it is dropped

Fields

inner: GenericGauge<P>labels: Lvec: GenericGaugeVec<P>_phantom: &'a PhantomData<()>

Implementations

Methods from Deref<Target = GenericGauge<P>>

The fully qualified name for this gauge

This is the name with no labels, and corresponds to desc().fq_name on the Collector trait.

Set the gauge to an arbitrary value.

Increase the gauge by 1.

Decrease the gauge by 1.

Add the given value to the gauge. (The value can be negative, resulting in a decrement of the gauge.)

Subtract the given value from the gauge. (The value can be negative, resulting in an increment of the gauge.)

Return the gauge value.

Trait Implementations

Formats the value using the given formatter. Read more

The resulting type after dereferencing.

Dereferences the value.

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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