Enum miniz_oxide::deflate::core::TDEFLFlush [−][src]
pub enum TDEFLFlush {
None,
Sync,
Full,
Finish,
}
Expand description
A list of deflate flush types.
Variants
None
Normal operation.
Compress as much as there is space for, and then return waiting for more input.
Sync
Try to flush all the current data and output an empty raw block.
Full
Same as Sync
, but reset the dictionary so that the following data does not
depend on previous data.
Finish
Try to flush everything and end the deflate stream.
On success this will yield a TDEFLStatus::Done
return status.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TDEFLFlush
impl Send for TDEFLFlush
impl Sync for TDEFLFlush
impl Unpin for TDEFLFlush
impl UnwindSafe for TDEFLFlush
Blanket Implementations
Mutably borrows from an owned value. Read more