Struct weezl::decode::MsbBuffer

source ·
struct MsbBuffer {
    bit_buffer: u64,
    code_mask: u16,
    code_size: u8,
    bits: u8,
}

Fields§

§bit_buffer: u64

A buffer of individual bits. The oldest code is kept in the high-order bits.

§code_mask: u16

A precomputed mask for this code.

§code_size: u8

The current code size.

§bits: u8

The number of bits in the buffer.

Trait Implementations§

source§

impl CodeBuffer for MsbBuffer

source§

fn new(min_size: u8) -> Self

source§

fn reset(&mut self, min_size: u8)

source§

fn next_symbol(&mut self, inp: &mut &[u8]) -> Option<u16>

Retrieve the next symbol, refilling if necessary.
source§

fn bump_code_size(&mut self)

source§

fn refill_bits(&mut self, inp: &mut &[u8])

Refill the internal buffer.
source§

fn get_bits(&mut self) -> Option<u16>

Get the next buffered code word.
source§

fn max_code(&self) -> u16

source§

fn code_size(&self) -> u8

source§

impl Default for MsbBuffer

source§

fn default() -> MsbBuffer

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

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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<T, U> TryFrom<U> for Twhere 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 Twhere 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.