[−][src]Crate bitstream_reader
Tools for reading data types of arbitrary bit length and might not be byte-aligned in the source data
The main way of handling with the binary data is to first create a BitBuffer
,wrap it into a BitStream and then read from the stream.
Once you have a BitStream, there are 2 different approaches of reading data
- read primitives, Strings and byte arrays, using
read_bool,read_int,read_float,read_bytesandread_string - read any type implementing the
BitReadorBitReadSizedtraits usingreadandread_sizedBitReadis for types that can be read without requiring any size info (e.g. null-terminal strings, floats, whole integers, etc)BitReadSizedis for types that require external sizing information to be read (fixed length strings, arbitrary length integers
The BitRead and BitReadSized traits can be used with #[derive] if all fields implement BitRead or BitReadSized.
Examples
use bitstream_reader::{BitBuffer, LittleEndian, BitStream, BitRead}; #[derive(BitRead)] struct ComplexType { first: u8, #[size = 15] second: u16, third: bool, } let bytes = vec![ 0b1011_0101, 0b0110_1010, 0b1010_1100, 0b1001_1001, 0b1001_1001, 0b1001_1001, 0b1001_1001, 0b1110_0111 ]; let buffer = BitBuffer::new(bytes, LittleEndian); let mut stream = BitStream::new(buffer); let value: u8 = stream.read_int(7)?; let complex: ComplexType = stream.read()?;
Re-exports
pub use bitstream_reader_derive::BitRead; |
pub use bitstream_reader_derive::BitReadSized; |
pub use bitstream_reader_derive::BitSize; |
pub use bitstream_reader_derive::BitSizeSized; |
Structs
| BigEndian | Marks the buffer or stream as big endian |
| BitBuffer | Buffer that allows reading integers of arbitrary bit length and non byte-aligned integers |
| BitStream | Stream that provides an easy way to iterate trough a |
| FromUtf8Error | A possible error value when converting a |
| LazyBitRead | Struct that lazily reads it's contents from the stream |
| LazyBitReadSized | Struct that lazily reads it's contents from the stream |
| LittleEndian | Marks the buffer or stream as little endian |
Enums
| ReadError | Errors that can be returned when trying to read from a buffer |
Traits
| BitRead | Trait for types that can be read from a stream without requiring the size to be configured |
| BitReadSized | Trait for types that can be read from a stream, requiring the size to be configured |
| BitSize | Trait to get the number of bits needed to read types that can be read from a stream without requiring the size to be configured. |
| BitSizeSized | Trait to get the number of bits needed to read types that can be read from a stream requiring the size to be configured. |
| BitSkip | Trait to allow skipping a type |
| Endianness | Trait for specifying endianness of bit buffer |
Functions
| bit_size_of | Get the number of bits required to read a type from stream |
| bit_size_of_sized | Get the number of bits required to read a type from stream |
Type Definitions
| Result | Either the read bits in the requested format or a |