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 RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more