pub struct NibbleHuffmanCode {
pub length: u8,
pub bits: u8,
}Expand description
A huffman code for NibbleHuffman.
Fields§
§length: u8The number of bits in Self::bits.
bits: u8The code for the corresponding nibble.
Auto Trait Implementations§
impl Freeze for NibbleHuffmanCode
impl RefUnwindSafe for NibbleHuffmanCode
impl Send for NibbleHuffmanCode
impl Sync for NibbleHuffmanCode
impl Unpin for NibbleHuffmanCode
impl UnsafeUnpin for NibbleHuffmanCode
impl UnwindSafe for NibbleHuffmanCode
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