Trait RiceRead

Source
pub trait RiceRead<E: Endianness>: BitRead<E> {
    // Provided method
    fn read_rice(&mut self, log2_b: usize) -> Result<u64, Self::Error> { ... }
}
Expand description

Trait for reading Rice codes.

Provided Methods§

Source

fn read_rice(&mut self, log2_b: usize) -> 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>> RiceRead<E> for B