pub trait Min {
    // Required method
    fn min(&self) -> Result<Number>;
}
Available on crate feature metrics only.
Expand description

Min returns the minimum value over the set of values that were aggregated.

Required Methods§

Source

fn min(&self) -> Result<Number>

The min of the currently aggregated metrics

Implementors§