pub trait HistogramFn {
    fn record(&self, value: f64);
}
Expand description

A histogram handler.

Required Methods

Records a value into the histogram.

Implementations on Foreign Types

Implementors