pub struct LookupTableEntry(/* private fields */);
Expand description
A lookup table entry for the canonical prefix decoder.
format:
- bit 0-3: bit lengths to advance (1-15)
- bit 4-6: reserved, mbz
- bit 7-15: symbol1
Implementations§
Trait Implementations§
Source§impl Clone for LookupTableEntry
impl Clone for LookupTableEntry
Source§fn clone(&self) -> LookupTableEntry
fn clone(&self) -> LookupTableEntry
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 LookupTableEntry
impl Debug for LookupTableEntry
impl Copy for LookupTableEntry
Auto Trait Implementations§
impl Freeze for LookupTableEntry
impl RefUnwindSafe for LookupTableEntry
impl Send for LookupTableEntry
impl Sync for LookupTableEntry
impl Unpin for LookupTableEntry
impl UnwindSafe for LookupTableEntry
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