Skip to main content

BitReader

Struct BitReader 

Source
pub struct BitReader<R: Read> { /* private fields */ }

Implementationsยง

Sourceยง

impl<R: Read> BitReader<R>

Source

pub fn new(inner: R) -> Self

Source

pub fn with_byte_order(byte_order: ByteOrder, inner: R) -> Self

Sourceยง

impl<R: Read> BitReader<R>

Source

pub fn is_byte_aligned(&self) -> bool

Returns true if at byte boundary (no pending bits)

When true:

  • read() operations are permitted
  • Next bit read will start from a fresh byte

Trait Implementationsยง

Sourceยง

impl<R: Read> BitRead for BitReader<R>

Sourceยง

fn read_bits(&mut self, n: usize) -> Result<Self::Output>

Reads exactly n bits from the stream (1-64 bits)

ยงArguments
  • n - Number of bits to read (1 to 64 inclusive)
ยงReturns

Bits read

ยงErrors

Returns error if n is not between 1-64 or not enough bits are available

Sourceยง

type Output = u64

Sourceยง

impl<R: Read> Read for BitReader<R>

Sourceยง

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

Reads bytes from the underlying bit stream.

This method behaves differently depending on the bit buffer state:

  • When the bit buffer is empty (byte-aligned state), it delegates directly to the inner reader
  • When the bit buffer contains unconsumed bits (non-byte-aligned state), it returns an UnalignedAccess error
ยงByte Alignment Requirement

The fundamental reason for this behavior is bit stream integrity. When partially consumed bits exist in the buffer:

  1. Direct byte access would bypass the bit bufferโ€™s state tracking
  2. Reading bytes would consume underlying bytes that contain the remaining portions of partially read bit sequences
  3. This would irreversibly corrupt the bit-level parsing state
ยงCorrect Usage

To read byte data:

  1. Use is_byte_aligned() to check if youโ€™re in byte-aligned state
  2. For mixed bit/byte reading, always consume all bits in the current byte before reading bytes
ยงErrors

Returns BitReadWriteError::UnalignedAccess (wrapped in io::Error) when called with non-empty bit buffer. This prevents:

  • Undefined state transitions
  • Silent data corruption
  • Loss of partially buffered bits
1.36.0 ยท Sourceยง

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>

Like read, except that it reads into a slice of buffers. Read more
Sourceยง

fn is_read_vectored(&self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 ยท Sourceยง

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Reads all bytes until EOF in this source, placing them into buf. Read more
1.0.0 ยท Sourceยง

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Reads all bytes until EOF in this source, appending them to buf. Read more
1.6.0 ยท Sourceยง

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Reads the exact number of bytes required to fill buf. Read more
Sourceยง

fn read_buf(&mut self, buf: BorrowedCursor<'_, u8>) -> Result<(), Error>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
Sourceยง

fn read_buf_exact( &mut self, cursor: BorrowedCursor<'_, u8>, ) -> Result<(), Error>

๐Ÿ”ฌThis is a nightly-only experimental API. (read_buf)
Reads the exact number of bytes required to fill cursor. Read more
1.0.0 ยท Sourceยง

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a โ€œby referenceโ€ adapter for this instance of Read. Read more
1.0.0 ยท Sourceยง

fn bytes(self) -> Bytes<Self> โ“˜
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 ยท Sourceยง

fn chain<R>(self, next: R) -> Chain<Self, R> โ“˜
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 ยท Sourceยง

fn take(self, limit: u64) -> Take<Self> โ“˜
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
Sourceยง

fn read_array<const N: usize>(&mut self) -> Result<[u8; N], Error>
where Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_array)
Read and return a fixed array of bytes from this source. Read more
Sourceยง

fn read_le<T>(&mut self) -> Result<T, Error>
where T: FromEndianBytes, Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_le)
Read and return a type (e.g. an integer) in little-endian order. Read more
Sourceยง

fn read_be<T>(&mut self) -> Result<T, Error>
where T: FromEndianBytes, Self: Sized,

๐Ÿ”ฌThis is a nightly-only experimental API. (read_le)
Read and return a type (e.g. an integer) in big-endian order. Read more

Auto Trait Implementationsยง

ยง

impl<R> Freeze for BitReader<R>
where R: Freeze,

ยง

impl<R> RefUnwindSafe for BitReader<R>
where R: RefUnwindSafe,

ยง

impl<R> Send for BitReader<R>
where R: Send,

ยง

impl<R> Sync for BitReader<R>
where R: Sync,

ยง

impl<R> Unpin for BitReader<R>
where R: Unpin,

ยง

impl<R> UnsafeUnpin for BitReader<R>
where R: UnsafeUnpin,

ยง

impl<R> UnwindSafe for BitReader<R>
where R: UnwindSafe,

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<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

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>,

Sourceยง

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.