Enum rmpv::decode::Error [] [src]

pub enum Error {
    InvalidMarkerRead(Error),
    InvalidDataRead(Error),
}

This type represents all possible errors that can occur when deserializing a value.

Variants

Error while reading marker byte.

Error while reading data.

Methods

impl Error
[src]

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<MarkerReadError> for Error
[src]

Performs the conversion.

impl From<ValueReadError> for Error
[src]

Performs the conversion.