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