[][src]Struct csvsc::Del

pub struct Del<'a, I> { /* fields omitted */ }

Deletes the specified columns from each row.

Implementations

impl<'a, I> Del<'a, I> where
    I: RowStream
[src]

pub fn new(iter: I, columns: Vec<&'a str>) -> Del<I>[src]

Trait Implementations

impl<'a, I> IntoIterator for Del<'a, I> where
    I: RowStream
[src]

type Item = RowResult

The type of the elements being iterated over.

type IntoIter = IntoIter<'a, I::IntoIter>

Which kind of iterator are we turning this into?

impl<'a, I> RowStream for Del<'a, I> where
    I: RowStream
[src]

Auto Trait Implementations

impl<'a, I> RefUnwindSafe for Del<'a, I> where
    I: RefUnwindSafe

impl<'a, I> Send for Del<'a, I> where
    I: Send

impl<'a, I> Sync for Del<'a, I> where
    I: Sync

impl<'a, I> Unpin for Del<'a, I> where
    I: Unpin

impl<'a, I> UnwindSafe for Del<'a, I> 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<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.