Enum csv::Error [] [src]

pub enum Error {
    Encode(String),
    Decode(String),
    Parse(LocatableError<ParseError>),
    Io(Error),
    Index(String),
}

An error produced by an operation on CSV data.

Variants

An error reported by the type-based encoder.

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 using a CSV index.

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.

impl StdError 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.