Type Alias LabelGuardedHistogram

Source
pub type LabelGuardedHistogram<const N: usize> = LabelGuardedMetric<Histogram, N>;

Aliased Type§

struct LabelGuardedHistogram<const N: usize> {
    inner: Histogram,
    _guard: Arc<LabelGuard<N>>,
}

Fields§

§inner: Histogram§_guard: Arc<LabelGuard<N>>

Implementations§

Source§

impl<const N: usize> LabelGuardedHistogram<N>

Source

pub fn test_histogram() -> Self