Enum serde_value::DeserializerError
[−]
[src]
pub enum DeserializerError {
Custom(String),
EndOfStream,
InvalidType(Type),
InvalidValue(String),
InvalidLength(usize),
UnknownVariant(String),
UnknownField(String),
MissingField(&'static str),
}Variants
Custom(String)EndOfStreamInvalidType(Type)InvalidValue(String)InvalidLength(usize)UnknownVariant(String)UnknownField(String)MissingField(&'static str)Methods
impl DeserializerError[src]
fn to_error<E: Error>(&self) -> E
fn into_error<E: Error>(self) -> E
Trait Implementations
impl Debug for DeserializerError[src]
impl Error for DeserializerError[src]
fn custom<T: Into<String>>(msg: T) -> Self
Raised when there is general error when deserializing a type.
fn end_of_stream() -> Self
Raised when a Deserialize type unexpectedly hit the end of the stream.
fn invalid_type(ty: Type) -> Self
Raised when a Deserialize was passed an incorrect type.
fn invalid_value(msg: &str) -> Self
Raised when a Deserialize was passed an incorrect value.
fn invalid_length(len: usize) -> Self
Raised when a fixed sized sequence or map was passed in the wrong amount of arguments. Read more
fn unknown_variant(field: &str) -> Self
Raised when a Deserialize enum type received an unexpected variant.
fn unknown_field(field: &str) -> Self
Raised when a Deserialize struct type received an unexpected struct field.
fn missing_field(field: &'static str) -> Self
raised when a deserialize struct type did not receive a field.
fn duplicate_field(field: &'static str) -> Self
Raised when a Deserialize struct type received more than one of the same struct field. Read more
impl Error for DeserializerError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any. Read more