Struct csvsc::add::Add[][src]

pub struct Add<I> { /* fields omitted */ }

Adds a column to each register. It can be based on existing ones or the source filename.

Implementations

impl<I> Add<I> where
    I: RowStream
[src]

pub fn new(iter: I, column: ColSpec) -> Result<Add<I>>[src]

Trait Implementations

impl<I: Debug> Debug for Add<I>[src]

impl<I> IntoIterator for Add<I> where
    I: RowStream
[src]

type Item = RowResult

The type of the elements being iterated over.

type IntoIter = IntoIter<I::IntoIter>

Which kind of iterator are we turning this into?

impl<I> RowStream for Add<I> where
    I: RowStream
[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for Add<I> where
    I: RefUnwindSafe

impl<I> Send for Add<I> where
    I: Send

impl<I> Sync for Add<I> where
    I: Sync

impl<I> Unpin for Add<I> where
    I: Unpin

impl<I> UnwindSafe for Add<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<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.