Enum csv::DeserializeErrorKind
source · pub enum DeserializeErrorKind {
Message(String),
Unsupported(String),
UnexpectedEndOfRow,
InvalidUtf8(Utf8Error),
ParseBool(ParseBoolError),
ParseInt(ParseIntError),
ParseFloat(ParseFloatError),
}
Expand description
The type of a Serde deserialization error.
Variants§
Message(String)
A generic Serde deserialization error.
Unsupported(String)
A generic Serde unsupported error.
UnexpectedEndOfRow
This error occurs when a Rust type expects to decode another field from a row, but no more fields exist.
InvalidUtf8(Utf8Error)
This error occurs when UTF-8 validation on a field fails. UTF-8
validation is only performed when the Rust type requires it (e.g.,
a String
or &str
type).
ParseBool(ParseBoolError)
This error occurs when a boolean value fails to parse.
ParseInt(ParseIntError)
This error occurs when an integer value fails to parse.
ParseFloat(ParseFloatError)
This error occurs when a float value fails to parse.
Trait Implementations§
source§impl Clone for DeserializeErrorKind
impl Clone for DeserializeErrorKind
source§fn clone(&self) -> DeserializeErrorKind
fn clone(&self) -> DeserializeErrorKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DeserializeErrorKind
impl Debug for DeserializeErrorKind
source§impl Display for DeserializeErrorKind
impl Display for DeserializeErrorKind
source§impl PartialEq<DeserializeErrorKind> for DeserializeErrorKind
impl PartialEq<DeserializeErrorKind> for DeserializeErrorKind
source§fn eq(&self, other: &DeserializeErrorKind) -> bool
fn eq(&self, other: &DeserializeErrorKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.