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
Encode | An error reported by the type-based encoder. |
Decode | An error reported by the type-based decoder. |
Parse | An error reported by the CSV parser. |
Io | An error originating from reading or writing to the underlying buffer. |
Index | An error originating from using a CSV index. |