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.

impl Display for CompressionError
[src]

Formats the value using the given formatter. Read more

impl Error for CompressionError
[src]

A short description of the error. Read more

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