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

Points return the raw set of values that were aggregated.

Required Methods§

Source

fn points(&self) -> Result<Vec<Number>>

The raw set of points currently aggregated

Implementors§