bitx 0.2.2

More ergonomic way to deal with bitfield-like struct.
Documentation
1
2
3
4
5
6
7
8
9
10
use bitx::bits;

bits! {
    pub struct HugePacket: 33.0 {
        0.1 pub huge_field: u129,
        // unaligned extraction > 128 bits
    }
}

fn main() {}