Expand description
Simple & fast bit-level binary co/dec in Rust.
For more information about #[derive(BitDecode, BitEncode)]
and its attributes, see
BitDecode
or BitEncode
.
§Example
#[derive(Debug, BitDecode, BitEncode, PartialEq)]
#[codec(discriminant_type = u8)]
#[codec(bits = 4)]
enum E {
V1 = 1,
#[codec(discriminant = 4)]
V4,
}
#[derive(Debug, BitDecode, BitEncode, PartialEq)]
struct S {
#[codec(bits = 1)]
bitflag: bool,
#[codec(bits = 3)]
bitfield: u8,
enum_: E,
#[codec(write_value = self.arr.len() as u8)]
arr_len: u8,
#[codec(tag = arr_len as usize)]
arr: Vec<u8>,
#[codec(tag_type = u16, tag_value = self.prefixed_arr.len() as u16)]
prefixed_arr: Vec<u8>,
#[codec(flexible_array_member)]
read_to_end: Vec<u8>,
}
assert_eq!(
S::decode_bytes(&[
0b1000_0000 // bitflag: true (1)
| 0b101_0000 // bitfield: 5 (101)
| 0b0001, // enum_: V1 (0001)
0x02, // arr_len: 2
0x21, 0x37, // arr: [0x21, 0x37]
0x00, 0x01, 0x33, // prefixed_arr: [0x33]
0x01, 0x02, 0x03, // read_to_end: [0x01, 0x02, 0x03]
], bin_proto::BigEndian).unwrap(),
S {
bitflag: true,
bitfield: 5,
enum_: E::V1,
arr_len: 2,
arr: vec![0x21, 0x37],
prefixed_arr: vec![0x33],
read_to_end: vec![0x01, 0x02, 0x03],
}
);
§Manual Implementations
The BitDecode
and BitEncode
derive macros support the most common use-cases,
but it may sometimes be necessary to manually implement BitEncode
or BitDecode
. Both
traits have two generic parameters:
Ctx
: A mutable variable passed recursively down the codec chainTag
: A tag for specifying additional behavior
Tag
can have any type. The following are used throughout bin-proto
and ensure
interoperability:
Tag
: Specifies that an additional tag is required during decoding, such as a length prefix for aVec
, or a discriminant of anenum
Untagged
: Specifies that the type has a tag used during decoding, but this tag is not written during encodingBits
: Specified that the type is a bitfield, and can have a variable number of bits
Re-exports§
pub extern crate bitstream_io;
Structs§
- BigEndian
- Big-endian, or most significant bits first
- Bits
- A marker for
BitDecode
andBitEncode
implementors that support bitfield operations. - Little
Endian - Little-endian, or least significant bits first
- Tag
- A marker for
BitDecode
implementors that require a tag. - Untagged
- A marker for
BitEncode
implementors that don’t prepend their tag, andBitDecode
implementors that usually have a tag, but can be read to EOF
Enums§
Traits§
- BitCodec
- A trait with helper functions for simple codecs
- BitDecode
- A trait for bit-level decoding.
- BitEncode
- A trait for bit-level encoding.
- BitRead
- A trait for anything that can read a variable number of potentially un-aligned values from an input stream
- BitWrite
- A trait for anything that can write a variable number of potentially un-aligned values to an output stream
- Discriminable
- A trait for types with discriminants. Automatically derived for
enum
s. - Endianness
- A stream’s endianness, or byte order, for determining how bits should be read.