Enum serde_value::DeserializerError [−][src]
pub enum DeserializerError {
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),
}
Variants
Custom(String)
Tuple Fields
0: String
InvalidType(Unexpected, String)
InvalidValue(Unexpected, String)
InvalidLength(usize, String)
UnknownVariant(String, &'static [&'static str])
UnknownField(String, &'static [&'static str])
MissingField(&'static str)
Tuple Fields
0: &'static str
DuplicateField(&'static str)
Tuple Fields
0: &'static str
Implementations
Trait Implementations
Raised when there is general error when deserializing a type. Read more
Raised when a Deserialize
receives a type different from what it was
expecting. Read more
Raised when a Deserialize
receives a value of the right type but that
is wrong for some other reason. Read more
Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
Raised when a Deserialize
enum type received a variant with an
unrecognized name. Read more
Raised when a Deserialize
struct type received a field with an
unrecognized name. Read more
Raised when a Deserialize
struct type expected to receive a required
field with a particular name but that field was not present in the
input. Read more
Raised when a Deserialize
struct type received more than one of the
same field. Read more
Performs the conversion.
type Deserializer = Value
type Deserializer = Value
The type of the deserializer being converted into.
Convert this value into a deserializer.