pub struct HuffmanDecodeEntry {
pub symbol: u8,
pub num_bits: u8,
}Fields§
§symbol: u8§num_bits: u8Trait Implementations§
Source§impl Clone for HuffmanDecodeEntry
impl Clone for HuffmanDecodeEntry
Source§fn clone(&self) -> HuffmanDecodeEntry
fn clone(&self) -> HuffmanDecodeEntry
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 HuffmanDecodeEntry
Source§impl Default for HuffmanDecodeEntry
impl Default for HuffmanDecodeEntry
Source§fn default() -> HuffmanDecodeEntry
fn default() -> HuffmanDecodeEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HuffmanDecodeEntry
impl RefUnwindSafe for HuffmanDecodeEntry
impl Send for HuffmanDecodeEntry
impl Sync for HuffmanDecodeEntry
impl Unpin for HuffmanDecodeEntry
impl UnsafeUnpin for HuffmanDecodeEntry
impl UnwindSafe for HuffmanDecodeEntry
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