pub trait DataPoint {
    fn x(&self) -> f64;
    fn y(&self) -> f64;
}
Expand description

data point for LttbSource

Required Methods

x value for sampling, must be in a strictly increasing order

y value for sampling

Implementations on Foreign Types

Implementors