type FlattenError = DeserializerError;Expand description
Type alias for reified error
serde_value::DeserializerError has one variant
for each of the constructors of de::Error.
Aliased Type§
enum FlattenError {
Custom(String),
InvalidType(Unexpected, String),
InvalidValue(Unexpected, String),
InvalidLength(usize, String),
UnknownVariant(String, &'static [&'static str]),
UnknownField(String, &'static [&'static str]),
MissingField(&'static str),
DuplicateField(&'static str),
}