pub trait Histogram: Send + Sync + Debug + DynClone { // Required method fn add_point(&self, point: f64); }
A histogram which will record a series of points.
Add a point to this histogram.