Enum rmp::encode::ValueWriteError [] [src]

pub enum ValueWriteError {
    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 Debug for ValueWriteError
[src]

Formats the value using the given formatter.

impl From<MarkerWriteError> for ValueWriteError
[src]

Performs the conversion.

impl From<DataWriteError> for ValueWriteError
[src]

Performs the conversion.

impl Error for ValueWriteError
[src]

A short description of the error. Read more

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

impl Display for ValueWriteError
[src]

Formats the value using the given formatter.