Enum miniz_oxide::deflate::core::TDEFLFlush [−][src]
pub enum TDEFLFlush {
None,
Sync,
Full,
Finish,
}
Expand description
A list of deflate flush types.
Variants
None
Compress as much as there is space for, and then return waiting for more input.
Sync
Try to flush 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 stream.
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