[][src]Enum rmp_serde::decode::Error

pub enum Error {
    InvalidMarkerRead(Error),
    InvalidDataRead(Error),
    TypeMismatch(Marker),
    OutOfRange,
    LengthMismatch(u32),
    Uncategorized(String),
    Syntax(String),
    Utf8Error(Utf8Error),
    DepthLimitExceeded,
}

Enum representing errors that can occur while decoding MessagePack data.

Variants

InvalidMarkerRead(Error)

The enclosed I/O error occurred while trying to read a MessagePack marker.

InvalidDataRead(Error)

The enclosed I/O error occurred while trying to read the encoded MessagePack data.

TypeMismatch(Marker)

A mismatch occurred between the decoded and expected value types.

OutOfRange

A numeric cast failed due to an out-of-range error.

LengthMismatch(u32)

A decoded array did not have the enclosed expected length.

Uncategorized(String)

An otherwise uncategorized error occurred. See the enclosed String for details.

Syntax(String)

A general error occurred while deserializing the expected type. See the enclosed String for details.

Utf8Error(Utf8Error)

An encoded string could not be parsed as UTF-8.

DepthLimitExceeded

The depth limit was exceeded; not currently used.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl Error for Error[src]

impl<'a> From<DecodeStringError<'a>> for Error[src]

impl From<MarkerReadError> for Error[src]

impl From<NumValueReadError> for Error[src]

impl From<Utf8Error> for Error[src]

impl From<ValueReadError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.