pub struct Histogram { /* private fields */ }Expand description
Open Metrics Histogram to measure distributions of discrete events.
let histogram = Histogram::new(exponential_buckets(1.0, 2.0, 10));
histogram.observe(4.2);Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Histogram
impl UnwindSafe for Histogram
Blanket Implementations
Mutably borrows from an owned value. Read more