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§
impl Copy for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more