#[repr(C)]pub struct HuffTable {
pub code: c_int,
pub length: c_int,
}
Expand description
Used to store optimal huffman encoding results
Fields§
§code: c_int
< code is the input value
length: c_int
< length of the encoding
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HuffTable
impl RefUnwindSafe for HuffTable
impl Send for HuffTable
impl Sync for HuffTable
impl Unpin for HuffTable
impl UnwindSafe for HuffTable
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