Enum bzip2::Status [] [src]

pub enum Status {
    Ok,
    FlushOk,
    RunOk,
    FinishOk,
    StreamEnd,
    MemNeeded,
}

Result of compression or decompression

Variants

Ok

Decompression went fine, nothing much to report.

FlushOk

The Flush action on a compression went ok.

RunOk

THe Run action on compression went ok.

FinishOk

The Finish action on compression went ok.

StreamEnd

The stream's end has been met, meaning that no more data can be input.

MemNeeded

There was insufficient memory in the input or output buffer to complete the request, but otherwise everything went normally.

Trait Implementations

impl Clone for Status
[src]

fn clone(&self) -> Status

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 Debug for Status
[src]

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

Formats the value using the given formatter.

impl Copy for Status
[src]

impl Eq for Status
[src]

impl PartialEq for Status
[src]

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

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.