Enum bson::DecoderError [] [src]

pub enum DecoderError {
    IoError(Error),
    Utf8Error(Utf8Error),
    UnrecognizedElementType(u8),
    InvalidArrayKey(usizeString),
    ExpectedField(&'static str),
    UnknownField(String),
    SyntaxError(String),
    EndOfStream,
    Unknown(String),
}

Possible errors that can arise during decoding.

Variants

Trait Implementations

impl Debug for DecoderError
[src]

Formats the value using the given formatter.

impl From<Error> for DecoderError
[src]

Performs the conversion.

impl From<Utf8Error> for DecoderError
[src]

Performs the conversion.

impl From<Error> for DecoderError
[src]

Performs the conversion.

impl Display for DecoderError
[src]

Formats the value using the given formatter.

impl Error for DecoderError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Error for DecoderError
[src]

Raised when there is general error when deserializing a type.

Raised when a Deserialize was passed an incorrect value.

Raised when a Deserialize type unexpectedly hit the end of the stream.

Raised when a Deserialize struct type received an unexpected struct field.

raised when a deserialize struct type did not receive a field.

Raised when a Deserialize was passed an incorrect type.

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

Raised when a Deserialize enum type received an unexpected variant.

Raised when a Deserialize struct type received more than one of the same struct field. Read more