Enum csv_sniffer::error::SnifferError [] [src]

pub enum SnifferError {
    Io(Error),
    Csv(Error),
    SniffingFailed(String),
}

An error that occurs while examining a CSV data file.

Variants

An I/O error

A CSV parsing error (from the csv crate)

A CSV sniffing error

Trait Implementations

impl Debug for SnifferError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for SnifferError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SnifferError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<Error> for SnifferError
[src]

[src]

Performs the conversion.

impl From<Error> for SnifferError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SnifferError

impl Sync for SnifferError