Enum serde_value::DeserializerError [] [src]

pub enum DeserializerError {
    Syntax(String),
    EndOfStream,
    UnknownField(String),
    MissingField(&'static str),
}

Variants

Syntax(String)EndOfStreamUnknownField(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]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for DeserializerError
[src]

fn syntax(msg: &str) -> 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 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 length_mismatch(_len: usize) -> Self

Raised when a fixed sized sequence or map was passed in the wrong amount of arguments.

fn type_mismatch(_type: 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.

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

impl Display for DeserializerError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<Error> for DeserializerError
[src]

fn from(e: Error) -> Self

Performs the conversion.