Enum cdrs::compression::CompressionError[][src]

pub enum CompressionError {
    Snappy(Error),
    Lz4(Error),
}

It's an error which may occure during encoding or deconding frame body. As there are only two types of compressors it contains two related enum options.

Variants

Snappy error.

Lz4 error.

Trait Implementations

impl Debug for CompressionError
[src]

Formats the value using the given formatter. Read more

impl Display for CompressionError
[src]

Formats the value using the given formatter. Read more

impl Error for CompressionError
[src]

This method is soft-deprecated. Read more

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

impl From<CompressionError> for Error
[src]

Performs the conversion.

Auto Trait Implementations