Enum csv::ParseError
[−]
[src]
pub enum ParseError {
UnequalLengths {
expected: u64,
got: u64,
},
InvalidUtf8,
}A description of a CSV parse error.
Variants
UnequalLengths | A record was found that has a different size than other records. This is only reported when Fields
| ||||
InvalidUtf8 | An error occurred when trying to convert a field to a Unicode string. TODO: Include the real Utf8Error, but it is not stabilized yet. |