[][src]Struct claxon::input::Bitstream

pub struct Bitstream<R: ReadBytes> { /* fields omitted */ }

Wraps a Reader to facilitate reading that is not byte-aligned.

Methods

impl<R: ReadBytes> Bitstream<R>[src]

pub fn new(reader: R) -> Bitstream<R>[src]

Wraps the reader with a reader that facilitates reading individual bits.

pub fn read_bit(&mut self) -> Result<bool>[src]

Reads a single bit.

Reading a single bit can be done more efficiently than reading more than one bit, because a bit never straddles a byte boundary.

pub fn read_unary(&mut self) -> Result<u32>[src]

Reads bits until a 1 is read, and returns the number of zeros read.

Because the reader buffers a byte internally, reading unary can be done more efficiently than by just reading bit by bit.

pub fn read_leq_u8(&mut self, bits: u32) -> Result<u8>[src]

Reads at most eight bits.

pub fn read_gt_u8_leq_u16(&mut self, bits: u32) -> Result<u32>[src]

Read n bits, where 8 < n <= 16.

pub fn read_leq_u16(&mut self, bits: u32) -> Result<u16>[src]

Reads at most 16 bits.

pub fn read_leq_u32(&mut self, bits: u32) -> Result<u32>[src]

Reads at most 32 bits.

Auto Trait Implementations

impl<R> Unpin for Bitstream<R> where
    R: Unpin

impl<R> Sync for Bitstream<R> where
    R: Sync

impl<R> Send for Bitstream<R> where
    R: Send

impl<R> UnwindSafe for Bitstream<R> where
    R: UnwindSafe

impl<R> RefUnwindSafe for Bitstream<R> where
    R: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]