Enum xz2::stream::Status [] [src]

pub enum Status {
    Ok,
    StreamEnd,
    GetCheck,
    MemNeeded,
}

Return value of a process operation.

Variants

Operation completed successfully.

End of stream was reached.

When encoding, this means that a sync/full flush or Finish was completed. When decoding, this indicates that all data was decoded successfully.

If the TELL_ANY_CHECK flags is specified when constructing a decoder, this informs that the check method will now return the underlying integrity check algorithm.

An error has not been encountered, but no progress is possible.

Processing can be continued normally by providing more input and/or more output space, if possible.

Typically the first call to process that can do no progress returns Ok instead of MemNeeded. Only the second consecutive call doing no progress will return MemNeeded.

Trait Implementations

impl Debug for Status
[src]

Formats the value using the given formatter.

impl Copy for Status
[src]

impl Clone for Status
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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 !=.