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

Max returns the maximum value over the set of values that were aggregated.

Required Methods§

Source

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

The max of the currently aggregated metrics

Implementors§