pub trait RiceWrite<E: Endianness>: BitWrite<E> {
// Provided method
fn write_rice(
&mut self,
n: u64,
log2_b: usize,
) -> Result<usize, Self::Error> { ... }
}
Expand description
Trait for writing Rice codes.
Provided 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.