Trait OmegaRead

Source
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§

Source

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.

Implementors§

Source§

impl<E: Endianness, B: BitRead<E>> OmegaRead<E> for B