Helpers for storing sub-byte enums in primitive types.
```rust
fn example() { // Could either be handwritten or extracted from a serialized network buffer let mut storage = vec![0u8]; // write TCP bits storage.store(Transport::TCP).unwrap(); // write address type bits storage.store(AddressType::IPv4).unwrap();
// retrieve as named enums from positions indicated by BitField
implementations
asserteq!(storage.getas::
enum Transport { TCP = 0b01, UDP = 0b10, UDT = 0b11, }
pub enum AddressType { IPv4 = 0, IPv6 = 1, DomainName = 2, }
impl BitField for Transport { const POS: usize = 0; const WIDTH: usize = 2; }
impl BitField for AddressType { const POS: usize = 2; const WIDTH: usize = 2; }
impl Into
impl Into
impl TryFrom
fn try_from(x: u8) -> Result<Self, Self::Error> {
match x {
x if x == AddressType::IPv4 as u8 => Ok(AddressType::IPv4),
x if x == AddressType::IPv6 as u8 => Ok(AddressType::IPv6),
_ => Err(SerError::InvalidType("Unsupported AddressType".into())),
}
}
}
impl TryFrom
fn try_from(value: u8) -> Result