Enum lzf::LzfError [] [src]

pub enum LzfError {
    BufferTooSmall,
    DataCorrupted,
    NoCompressionPossible,
    UnknownError(i32),
}

Variants

BufferTooSmallDataCorruptedNoCompressionPossibleUnknownError(i32)

Trait Implementations

impl Copy for LzfError
[src]

impl Debug for LzfError
[src]

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

Formats the value using the given formatter.

impl Clone for LzfError
[src]

fn clone(&self) -> LzfError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Eq for LzfError
[src]

impl PartialEq for LzfError
[src]

fn eq(&self, __arg_0: &LzfError) -> bool

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

fn ne(&self, __arg_0: &LzfError) -> bool

This method tests for !=.

impl Display for LzfError
[src]

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

Formats the value using the given formatter.