[−][src]Struct claxon::input::Bitstream
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,
R: Unpin,
impl<R> Sync for Bitstream<R> where
R: Sync,
R: Sync,
impl<R> Send for Bitstream<R> where
R: Send,
R: Send,
impl<R> UnwindSafe for Bitstream<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for Bitstream<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,