Struct ore::metrics::DeleteOnDropHistogram[][src]

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

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

It adds a method to create a concrete metric from the vector that gets removed from the vector when the concrete metric is dropped.

Fields

inner: Histogramlabels: Lvec: HistogramVec_phantom: &'a PhantomData<()>

Implementations

Methods from Deref<Target = Histogram>

Add a single observation to the Histogram.

Return a HistogramTimer to track a duration.

Observe execution time of a closure, in second.

Return a LocalHistogram for single thread usage.

Return accumulated sum of all samples.

Return count of all samples.

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