Trait utah::util::traits::Process [] [src]

pub trait Process<'a, T, F> where
    T: UtahNum,
    F: Fn(T) -> T, 
{ fn impute(self, strategy: ImputeStrategy) -> Impute<'a, Self, T>
    where
        Self: Sized + Iterator<Item = WindowMut<'a, T>>
; fn to_mut_df(self) -> DataFrameMut<'a, T>
    where
        Self: Sized + Iterator<Item = WindowMut<'a, T>>
; fn mapdf(self, f: F) -> MapDF<'a, T, Self, F>
    where
        Self: Sized + Iterator<Item = WindowMut<'a, T>> + Clone
; }

Required Methods

Implementors