Enum ndarray_csv::Error[][src]

pub enum Error {
    Csv(Error),
    TooFewRows {
        expected: usize,
        actual: usize,
    },
    TooManyRows {
        expected: usize,
    },
    TooFewColumns {
        at_row_index: usize,
        expected: usize,
        actual: usize,
    },
    TooManyColumns {
        at_row_index: usize,
        expected: usize,
    },
}

Variants

Fields of TooFewRows

Fields of TooManyRows

Fields of TooFewColumns

Fields of TooManyColumns

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error