Enum bzip2::Status [] [src]

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

Result of compression or decompression

Variants

Decompression went fine, nothing much to report.

The Flush action on a compression went ok.

THe Run action on compression went ok.

The Finish action on compression went ok.

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

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

Trait Implementations

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

impl Copy for Status
[src]

impl Debug for Status
[src]

Formats the value using the given formatter.

impl Clone for Status
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more