[][src]Struct utah2::combinators::transform::Remove

pub struct Remove<'a, I, T: 'a> where
    I: Iterator<Item = Window<'a, T>>, 
{ pub data: I, pub ind: Vec<String>, pub other: Vec<String>, pub axis: UtahAxis, }

Fields

data: Iind: Vec<String>other: Vec<String>axis: UtahAxis

Methods

impl<'a, I, T> Remove<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>, 
[src]

Important traits for Remove<'a, I, T>
pub fn new(
    df: I,
    ind: Vec<String>,
    other: Vec<String>,
    axis: UtahAxis
) -> Remove<'a, I, T>
[src]

Trait Implementations

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

impl<'a, I: Clone, T: Clone + 'a> Clone for Remove<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>, 
[src]

impl<'a, I: Debug, T: Debug + 'a> Debug for Remove<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>, 
[src]

impl<'a, I, T> Iterator for Remove<'a, I, T> where
    I: Iterator<Item = Window<'a, T>>, 
[src]

type Item = Window<'a, T>

The type of the elements being iterated over.

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

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

Auto Trait Implementations

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

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

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

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

impl<'a, I, T> UnwindSafe for Remove<'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>,