Trait IncrementalTransform
pub trait IncrementalTransform {
type Output;
// Required methods
fn push(&mut self, sample: f64) -> bool;
fn current(&self) -> Option<Self::Output>;
fn is_ready(&self) -> bool;
fn samples_processed(&self) -> u64;
fn reset(&mut self);
}