Enum bzip2::Status
[−]
[src]
pub enum Status {
Ok,
FlushOk,
RunOk,
FinishOk,
StreamEnd,
MemNeeded,
}Result of compression or decompression
Variants
OkDecompression went fine, nothing much to report.
FlushOkThe Flush action on a compression went ok.
RunOkTHe Run action on compression went ok.
FinishOkThe Finish action on compression went ok.
StreamEndThe stream's end has been met, meaning that no more data can be input.
MemNeededThere 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]
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) -> bool1.0.0
This method tests for !=.
impl Eq for Status[src]
impl Copy for Status[src]
impl Debug for Status[src]
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