#[repr(C)]pub struct inflate_huff_code_small {
pub short_code_lookup: [u16; 1024],
pub long_code_lookup: [u16; 80],
}Expand description
@brief Small lookup table for decoding huffman codes
Fields§
§short_code_lookup: [u16; 1024]!< Short code lookup table
long_code_lookup: [u16; 80]!< Long code lookup table
Trait Implementations§
Source§impl Clone for inflate_huff_code_small
impl Clone for inflate_huff_code_small
Source§fn clone(&self) -> inflate_huff_code_small
fn clone(&self) -> inflate_huff_code_small
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for inflate_huff_code_small
Auto Trait Implementations§
impl Freeze for inflate_huff_code_small
impl RefUnwindSafe for inflate_huff_code_small
impl Send for inflate_huff_code_small
impl Sync for inflate_huff_code_small
impl Unpin for inflate_huff_code_small
impl UnsafeUnpin for inflate_huff_code_small
impl UnwindSafe for inflate_huff_code_small
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