Enum quick_csv::error::Error [] [src]

pub enum Error {
    Decode(String),
    Parse(String),
    Io(Error),
    EOL,
    UnescapedQuote,
    UnexpextedQuote,
    ColumnMismatch(usizeusize),
}

An error produced by an operation on CSV data.

Variants

An error reported by the type-based decoder.

An error reported by the CSV parser.

An error originating from reading or writing to the underlying buffer.

An error originating from finding end of line instead of a column.

Unescaped quote

Unexpected quote in a column which is non quoted column

Column count mismatch

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for Error
[src]

Performs the conversion.