Skip to main content

BitWriter

Struct BitWriter 

Source
pub struct BitWriter<'a> { /* private fields */ }
Expand description

Writes packed bits to a caller-supplied byte slice, most-significant-bit first.

The cursor zero-fills bytes lazily as it advances, so callers can pass an uninitialized-looking buffer and read out only the prefix returned by BitWriter::finish.

§Example

use wire_codec::BitWriter;

let mut storage = [0u8; 1];
let mut w = BitWriter::new(&mut storage);
w.write_bits(0b101, 3).unwrap();
w.write_bits(0b01100, 5).unwrap();
assert_eq!(w.finish(), 1);
assert_eq!(storage[0], 0xAC);

Implementations§

Source§

impl<'a> BitWriter<'a>

Source

pub fn new(bytes: &'a mut [u8]) -> Self

Wrap bytes in a new bit cursor. Existing contents of bytes are overwritten as bits are written.

Source

pub fn bits_written(&self) -> usize

Number of bits written so far.

Source

pub fn align_to_byte(&mut self) -> Result<()>

Pad the cursor with zero bits up to the next byte boundary.

§Errors

Returns Error::BufferFull if rounding up would exceed the backing slice.

Source

pub fn write_bits(&mut self, value: u64, n: u32) -> Result<()>

Write the low n bits of value into the buffer.

§Errors
Source

pub fn finish(self) -> usize

Finalize writes and return the number of whole bytes consumed.

A partially-filled trailing byte counts as one full byte, with the remaining low-order bits left zero-padded.

Trait Implementations§

Source§

impl<'a> Debug for BitWriter<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for BitWriter<'a>

§

impl<'a> RefUnwindSafe for BitWriter<'a>

§

impl<'a> Send for BitWriter<'a>

§

impl<'a> Sync for BitWriter<'a>

§

impl<'a> Unpin for BitWriter<'a>

§

impl<'a> UnsafeUnpin for BitWriter<'a>

§

impl<'a> !UnwindSafe for BitWriter<'a>

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.