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

Sum returns an aggregated max.

Required Methods§

source

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

The max of the currently aggregated metrics

Implementors§