pub enum Status {
Ok,
FlushOk,
RunOk,
FinishOk,
StreamEnd,
MemNeeded,
}
Expand description
Result of compression or decompression
Variants
Ok
Decompression went fine, nothing much to report.
FlushOk
The Flush action on a compression went ok.
RunOk
THe Run action on compression went ok.
FinishOk
The Finish action on compression went ok.
StreamEnd
The stream’s end has been met, meaning that no more data can be input.
MemNeeded
There was insufficient memory in the input or output buffer to complete the request, but otherwise everything went normally.
Trait Implementations
impl Copy for Status
impl Eq for Status
impl StructuralEq 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 · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more