pub trait SampleDelta: Copy + Default {
    fn sample_delta(self, after: Self) -> Option<Self>;
}
Expand description

This trait is being used to calculate sample amplitude differences (∆).

Required Methods§

Returns the difference (if any) between after and self (before).

Implementations on Foreign Types§

Implementors§