Enum rmpv::encode::Error []

pub enum Error {
    InvalidMarkerWrite(Error),
    InvalidDataWrite(Error),
}

An error that can occur when attempring to write multibyte MessagePack value.

Variants

I/O error while writing marker.

I/O error while writing data.

Trait Implementations

impl Display for ValueWriteError

Formats the value using the given formatter.

impl From<MarkerWriteError> for ValueWriteError

Performs the conversion.

impl From<DataWriteError> for ValueWriteError

Performs the conversion.

impl Error for ValueWriteError

A short description of the error. Read more

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

impl Debug for ValueWriteError

Formats the value using the given formatter.