pub enum BlockMode {
Independent,
Linked,
}
Expand description
The two BlockMode
operations that can be set on (FrameInfo
)FrameInfo
Variants§
Independent
Every block is compressed independently. The default.
Linked
Blocks can reference data from previous blocks.
Effective when the stream contains small blocks.
Trait Implementations§
impl Copy for BlockMode
impl StructuralPartialEq for BlockMode
Auto Trait Implementations§
impl Freeze for BlockMode
impl RefUnwindSafe for BlockMode
impl Send for BlockMode
impl Sync for BlockMode
impl Unpin for BlockMode
impl UnwindSafe for BlockMode
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