Enum compression::prelude::CompressionError[][src]

pub enum CompressionError {
    DataError,
    UnexpectedEof,
    Unexpected,
}

Variants

Trait Implementations

impl Debug for CompressionError
[src]

Formats the value using the given formatter. Read more

impl Clone for CompressionError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CompressionError
[src]

impl PartialEq for CompressionError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CompressionError
[src]

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<BZip2Error> for CompressionError
[src]

Performs the conversion.

Auto Trait Implementations