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

Mem

Failed Memory Allocation

MemLimit

Memory limit would be violated

Format

XZ magic bytes weren't found

Options

Unsupported compression options

Data

Corrupt data

Buf

Data looks truncated

Io

std::io::Error

Other

An unknown error

Trait Implementations

impl Display for LzmaError

fn fmt(&self, f: &mut Formatter) -> Result

impl StdError for LzmaError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

impl From<IoError> for LzmaError

fn from(err: IoError) -> LzmaError

Derived Implementations

impl Debug for LzmaError

fn fmt(&self, __arg_0: &mut Formatter) -> Result