pub struct CodeTable {
pub extra_len_bits: [u8; 16],
pub len_base: [u16; 16],
pub len_add: [u16; 16],
pub len_bits: [u8; 16],
pub len_codes: [u8; 256],
pub dist_bits: [u8; 64],
pub dist_codes: [u8; 256],
pub shan_lut: [u8; 256],
pub shan_4_lut: [u8; 256],
pub shan_6_lut: [u8; 128],
pub shan_8_lut: [u8; 256],
}Expand description
Contains decoding data, used in decode_bits.
Fields§
§extra_len_bits: [u8; 16]§len_base: [u16; 16]§len_add: [u16; 16]§len_bits: [u8; 16]§len_codes: [u8; 256]§dist_bits: [u8; 64]§dist_codes: [u8; 256]§shan_lut: [u8; 256]§shan_4_lut: [u8; 256]§shan_6_lut: [u8; 128]§shan_8_lut: [u8; 256]Auto Trait Implementations§
impl Freeze for CodeTable
impl RefUnwindSafe for CodeTable
impl Send for CodeTable
impl Sync for CodeTable
impl Unpin for CodeTable
impl UnwindSafe for CodeTable
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