pub struct Packing {
pub huffman: bool,
pub rle: bool,
}Expand description
Encodings applied to a block of a packed file
Fields§
§huffman: boolHuffman-tree encoding
rle: boolMix of run-time length encoding and backward references
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Packing
impl RefUnwindSafe for Packing
impl Send for Packing
impl Sync for Packing
impl Unpin for Packing
impl UnsafeUnpin for Packing
impl UnwindSafe for Packing
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