This crates allow you to define structs bitfields and safely work with them.
Current limitations:
```rust use bitbybit::bitbybit;
struct EthernetHeader { #[bit(7)] preamble: u8, #[bit(1)] sd: u8, #[bit(6)] dest: u8, #[bit(6)] src: u8, #[bit(2)] length: u8, }
// Will expand to something like that:
struct EthernetHeader { _basefield0: u8, _basefield1: u8, _basefield2: u8, _basefield3: u8, }
impl EthernetHeader { fn preamble(&self) -> u8 { self._basefield_0 & (1 << 7) - 1 }
fn set_preamble(&mut self, val: u8) {
self.__base_field_0 ^= self.__base_field_0 & (1 << 7) - 1;
self.__base_field_0 |= val & (1 << 7) - 1;
}
fn sd(&self) -> u8 { /*impl*/ }
fn set_sd(&mut self, val: u8) { /*impl*/ }
fn dest(&self) -> u8 { /*impl*/ }
fn set_dest(&mut self, val: u8) { /*impl*/ }
fn src(&self) -> u8 { /*impl*/ }
fn set_src(&mut self, val: u8) { /*impl*/ }
fn length(&self) -> u8 { /*impl*/ }
fn set_length(&mut self, val: u8) { /*impl*/ }
} ```