pub struct HuffmanDecodeTable { /* private fields */ }Expand description
Huffman decode table with two-level lookup.
Level 1: 8-bit fast lookup table (covers most codes). Level 2: slow path for codes longer than 8 bits.
Implementations§
Auto Trait Implementations§
impl Freeze for HuffmanDecodeTable
impl RefUnwindSafe for HuffmanDecodeTable
impl Send for HuffmanDecodeTable
impl Sync for HuffmanDecodeTable
impl Unpin for HuffmanDecodeTable
impl UnsafeUnpin for HuffmanDecodeTable
impl UnwindSafe for HuffmanDecodeTable
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