Trait metrics_catalogue::HistogramMetric[][src]

pub trait HistogramMetric {
    fn insert(&self, val: f64);
fn read(&self) -> Vec<f64>; }

Required methods

Adds a sample to the container

Returns a list of the current samples in the container

Implementors