#[repr(C)]pub struct HuffmanTable {
pub fast: [cc_int16; 512],
pub firstCodewords: [cc_uint16; 16],
pub endCodewords: [cc_uint16; 16],
pub firstOffsets: [cc_uint16; 16],
pub values: [cc_uint16; 288],
}
Fields§
§fast: [cc_int16; 512]
§firstCodewords: [cc_uint16; 16]
§endCodewords: [cc_uint16; 16]
§firstOffsets: [cc_uint16; 16]
§values: [cc_uint16; 288]
Trait Implementations§
Source§impl Clone for HuffmanTable
impl Clone for HuffmanTable
Source§fn clone(&self) -> HuffmanTable
fn clone(&self) -> HuffmanTable
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HuffmanTable
impl Debug for HuffmanTable
Source§impl Hash for HuffmanTable
impl Hash for HuffmanTable
Source§impl PartialEq for HuffmanTable
impl PartialEq for HuffmanTable
impl Copy for HuffmanTable
impl Eq for HuffmanTable
impl StructuralPartialEq for HuffmanTable
Auto Trait Implementations§
impl Freeze for HuffmanTable
impl RefUnwindSafe for HuffmanTable
impl Send for HuffmanTable
impl Sync for HuffmanTable
impl Unpin for HuffmanTable
impl UnwindSafe for HuffmanTable
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