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. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

This method is soft-deprecated. Read more

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

impl From<Error> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error