[][src]Struct utah2::combinators::process::Impute

pub struct Impute<'a, I, T: 'a> where
    I: Iterator<Item = WindowMut<'a, T>> + 'a,
    T: UtahNum
{ pub data: I, pub strategy: ImputeStrategy, pub other: Vec<String>, pub axis: UtahAxis, }

Fields

data: Istrategy: ImputeStrategyother: Vec<String>axis: UtahAxis

Methods

impl<'a, I, T> Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>>,
    T: UtahNum
[src]

Important traits for Impute<'a, I, T>
pub fn new(
    df: I,
    s: ImputeStrategy,
    other: Vec<String>,
    axis: UtahAxis
) -> Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>>, 
[src]

Trait Implementations

impl<'a, I: Clone, T: Clone + 'a> Clone for Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>> + 'a,
    T: UtahNum
[src]

impl<'a, I, T> Iterator for Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>>,
    T: UtahNum
[src]

type Item = WindowMut<'a, T>

The type of the elements being iterated over.

impl<'a, I, T, F> Process<'a, T, F> for Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>>,
    T: UtahNum,
    F: Fn(T) -> T, 
[src]

impl<'a, I, T> ToDataFrame<'a, (String, ArrayBase<ViewRepr<&'a mut T>, Dim<[usize; 1]>>), T> for Impute<'a, I, T> where
    I: Iterator<Item = WindowMut<'a, T>>,
    T: UtahNum
[src]

Auto Trait Implementations

impl<'a, I, T> RefUnwindSafe for Impute<'a, I, T> where
    I: RefUnwindSafe

impl<'a, I, T> Send for Impute<'a, I, T> where
    I: Send

impl<'a, I, T> Sync for Impute<'a, I, T> where
    I: Sync

impl<'a, I, T> Unpin for Impute<'a, I, T> where
    I: Unpin

impl<'a, I, T> UnwindSafe for Impute<'a, I, T> where
    I: UnwindSafe

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,