pub struct Entry32x16(/* private fields */);
Expand description
Entry32x16
is a codebook entry for 32-bit values with codes up-to 16-bits.
Trait Implementations§
Source§impl Clone for Entry32x16
impl Clone for Entry32x16
Source§fn clone(&self) -> Entry32x16
fn clone(&self) -> Entry32x16
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 CodebookEntry for Entry32x16
impl CodebookEntry for Entry32x16
Source§const JUMP_OFFSET_MAX: u32 = 32_767u32
const JUMP_OFFSET_MAX: u32 = 32_767u32
The maximum jump offset.
Source§type OffsetType = u16
type OffsetType = u16
The type of a jump offset in this entry.
Source§fn jump_offset(&self) -> usize
fn jump_offset(&self) -> usize
Get the position in the table to jump to.
Source§impl Default for Entry32x16
impl Default for Entry32x16
Source§fn default() -> Entry32x16
fn default() -> Entry32x16
Returns the “default value” for a type. Read more
impl Copy for Entry32x16
Auto Trait Implementations§
impl Freeze for Entry32x16
impl RefUnwindSafe for Entry32x16
impl Send for Entry32x16
impl Sync for Entry32x16
impl Unpin for Entry32x16
impl UnwindSafe for Entry32x16
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