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

Return value of a process operation.

Variants

Ok

Operation completed successfully.

StreamEnd

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.

GetCheck

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.

MemNeeded

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.