pub trait OmegaRead<E: Endianness>: BitRead<E> {
// Provided method
fn read_omega(&mut self) -> Result<u64, Self::Error> { ... }
}
Expand description
Trait for reading ω codes.
This is the trait you should pull in scope to read ω codes.
Provided Methods§
fn read_omega(&mut self) -> Result<u64, Self::Error>
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.