Crates.io Documentation Dependency status

bitbuffer

Tools for reading and writing data types of arbitrary bit length and might not be byte-aligned in the source data

The main way of reading the binary data is to first create a BitReadBuffer ,wrap it into a BitReadStream and then read from the stream.

Once you have a BitStream, there are 2 different approaches of reading data

The BitRead and BitReadSized traits can be used with #[derive] if all fields implement BitRead or BitReadSized.

For writing the data you wrap the output Vec into a BitWriteStream which can then be used in a manner similar to the BitReadStream

Just like the read counterparts, BitWrite and BitWriteSized traits can be used with #[derive] if all fields implement BitWrite or BitWriteSized.

Examples

``` use bitbuffer::{BitReadBuffer, LittleEndian, BitReadStream, BitRead, BitWrite, BitWriteStream};

[derive(BitRead, BitWrite)]

struct ComplexType { first: u8, #[size = 15] second: u16, third: bool, }

let bytes = vec![ 0b10110101, 0b01101010, 0b10101100, 0b10011001, 0b10011001, 0b10011001, 0b10011001, 0b11100111 ]; let buffer = BitReadBuffer::new(&bytes, LittleEndian); let mut stream = BitReadStream::new(buffer); let value: u8 = stream.read_int(7)?; let complex: ComplexType = stream.read()?;

let mut writebytes = vec![]; let mut writestream = BitWriteStream::new(&mut writebytes, LittleEndian); writestream.writeint(12, 7)?; writestream.write(&ComplexType { first: 55, second: 12, third: true })?; ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.