pub trait ByteOrder {
// Required methods
fn write_u32_to_bits<O: BitStore>(bits: &mut BitSlice<O>, value: u32);
fn read_u32_from_bits<O: BitStore>(bits: &BitSlice<O>) -> u32;
}
Required Methods§
fn write_u32_to_bits<O: BitStore>(bits: &mut BitSlice<O>, value: u32)
fn read_u32_from_bits<O: BitStore>(bits: &BitSlice<O>) -> u32
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.