pub trait OmegaWrite<E: Endianness>: BitWrite<E> {
// Required method
fn write_omega(&mut self, value: u64) -> Result<usize, Self::Error>;
}
Expand description
Trait for writing ω codes.
This is the trait you should usually pull in scope to write ω codes.
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.