pub trait WriteToLEBits {
// Required method
fn write_le_to<T: MutBits + ?Sized>(
&self,
bits: &mut T,
) -> Result<usize, Error>;
}
Expand description
Writes ‘self’ to the provided MutBits
impl in little endian order.
Required Methods§
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.