Struct open_metrics_client::metrics::histogram::Histogram [−][src]
pub struct Histogram { /* fields omitted */ }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