Struct splr::types::Ema2[][src]

pub struct Ema2 { /* fields omitted */ }

Exponential Moving Average pair, with a calibrator if feature ema_calibration is on.

Implementations

impl Ema2[src]

pub fn new(f: usize) -> Ema2[src]

pub fn with_slow(self, s: usize) -> Ema2[src]

pub fn get_slow(&self) -> f64[src]

Trait Implementations

impl Clone for Ema2[src]

impl Debug for Ema2[src]

impl EmaIF for Ema2[src]

type Input = f64

the type of the argument of update.

impl PropertyReference<TEma2, Ema2> for Restarter[src]

Auto Trait Implementations

impl RefUnwindSafe for Ema2

impl Send for Ema2

impl Sync for Ema2

impl Unpin for Ema2

impl UnwindSafe for Ema2

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.