pub struct EncodeTable {
pub lit_bits: [u8; 256],
pub lit_code: [u16; 256],
pub len_bits: [u8; 518],
pub len_code: [u16; 518],
pub dist_bits: [u8; 64],
pub dist_code: [u8; 64],
pub dict_bits: u32,
}Expand description
Contains encoding data.
Fields§
§lit_bits: [u8; 256]§lit_code: [u16; 256]§len_bits: [u8; 518]§len_code: [u16; 518]§dist_bits: [u8; 64]§dist_code: [u8; 64]§dict_bits: u32Auto Trait Implementations§
impl Freeze for EncodeTable
impl RefUnwindSafe for EncodeTable
impl Send for EncodeTable
impl Sync for EncodeTable
impl Unpin for EncodeTable
impl UnsafeUnpin for EncodeTable
impl UnwindSafe for EncodeTable
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