pub trait Histogram: Send + Sync + Debug + DynClone {
    // Required method
    fn add_point(&self, point: f64);
}
Expand description

A histogram which will record a series of points.

Required Methods§

source

fn add_point(&self, point: f64)

Add a point to this histogram.

Implementors§