pub struct Entry16x32(/* private fields */);
Expand description

Entry16x32 is a codebook entry for 16-bit values with codes up-to 32-bits.

Trait Implementations§

source§

impl Clone for Entry16x32

source§

fn clone(&self) -> Entry16x32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl CodebookEntry for Entry16x32

§

type ValueType = u16

The type of a value in this entry.
§

type OffsetType = u32

The type of a jump offset in this entry.
source§

const JUMP_OFFSET_MAX: u32 = 2_147_483_647u32

The maximum jump offset.
source§

fn new_value(value: Self::ValueType, len: u8) -> Self

Creates a new value entry.
source§

fn new_jump(offset: u32, len: u8) -> Self

Create a new jump entry.
source§

fn is_jump(&self) -> bool

Returns true if this entry is a jump entry.
source§

fn is_value(&self) -> bool

Returns true if this entry is a value entry.
source§

fn value(&self) -> Self::ValueType

Gets the value.
source§

fn value_len(&self) -> u32

Get the length of the value in bits.
source§

fn jump_offset(&self) -> usize

Get the position in the table to jump to.
source§

fn jump_len(&self) -> u32

Get the number of bits to read after jumping in the table.
source§

impl Default for Entry16x32

source§

fn default() -> Entry16x32

Returns the “default value” for a type. Read more
source§

impl Copy for Entry16x32

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

source§

fn into_sample(self) -> T

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.