Enum lzma::error::LzmaError [] [src]

pub enum LzmaError {
    Mem,
    MemLimit,
    Format,
    Options,
    Data,
    Buf,
    Io(IoError),
    Other,
}

An error produced by an operation on LZMA data

Variants

Failed Memory Allocation

Memory limit would be violated

XZ magic bytes weren't found

Unsupported compression options

Corrupt data

Data looks truncated

std::io::Error

An unknown error

Trait Implementations

impl Debug for LzmaError
[src]

Formats the value using the given formatter.

impl Display for LzmaError
[src]

Formats the value using the given formatter. Read more

impl StdError for LzmaError
[src]

A short description of the error. Read more

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

impl From<IoError> for LzmaError
[src]

Performs the conversion.