pub trait HistogramFn { // Required method fn record(&self, value: f64); }
A histogram handler.
Records a value into the histogram.