bebytes 3.0.2

A Rust library for serialization and deserialization of network structs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: bits attributes must complete a full byte. Total bits: 7, which is 1 bits short of a complete byte
  --> tests/compile_time/bit_fields/incomplete_byte.rs:6:23
   |
 6 |   struct IncompleteByte {
   |  _______________________^
 7 | |     #[bits(3)]
 8 | |     first: u8,
 9 | |     #[bits(4)]
...  |
12 | | }
   | |_^