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

Count returns the number of values that were aggregated.

Required Methods§

Source

fn count(&self) -> Result<u64>

The count of the currently aggregated metrics

Implementors§