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

pub enum ValueWriteError {
    InvalidMarkerWrite(WriteError),
    InvalidDataWrite(WriteError),
}

Represents an error that can occur when attempring to write MessagePack'ed complex value into the write.

Variants

IO error while writing marker.

IO error while writing data.

Trait Implementations

impl Debug for ValueWriteError
[src]

Formats the value using the given formatter.

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.

impl From<MarkerWriteError> for ValueWriteError
[src]

Performs the conversion.

impl From<FixedValueWriteError> for ValueWriteError
[src]

Performs the conversion.