pub trait Histogram: Sum + Count { // Required method fn histogram(&self) -> Result<Buckets>; }
metrics
Histogram returns the count of events in pre-determined buckets.
Buckets for this histogram.