[][src]Enum bsonrs::decode::DecodeError

pub enum DecodeError {
    IoError(Error),
    FromUtf8Error(FromUtf8Error),
    UnrecognizedElementType(u8),
    InvalidArrayKey(usizeString),
    ExpectedField(&'static str),
    UnknownField(String),
    SyntaxError(String),
    EndOfStream,
    InvalidType(String),
    InvalidLength(usizeString),
    DuplicatedField(&'static str),
    UnknownVariant(String),
    InvalidValue(String),
    Unknown(String),
}

Variants

IoError(Error)FromUtf8Error(FromUtf8Error)UnrecognizedElementType(u8)InvalidArrayKey(usizeString)ExpectedField(&'static str)UnknownField(String)SyntaxError(String)EndOfStreamInvalidType(String)InvalidLength(usizeString)DuplicatedField(&'static str)UnknownVariant(String)InvalidValue(String)Unknown(String)

Trait Implementations

impl From<Error> for DecodeError
[src]

impl From<FromUtf8Error> for DecodeError
[src]

impl Debug for DecodeError
[src]

impl Display for DecodeError
[src]

impl Error for DecodeError
[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

impl Error for DecodeError
[src]

Auto Trait Implementations

impl Send for DecodeError

impl Sync for DecodeError

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]