pub trait WriteToBEBits {
// Required method
fn write_be_to<T: MutBits + ?Sized>(
&self,
bits: &mut T,
) -> Result<(), Error>;
}Expand description
Writes ‘self’ to the provided MutBits impl in big 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.