pub trait MinimalBinaryWrite<E: Endianness>: BitWrite<E> {
    // Provided method
    fn write_minimal_binary(
        &mut self,
        n: u64,
        max: u64
    ) -> Result<usize, Self::Error> { ... }
}
Expand description

Trait for writing minimal binary codes.

Provided Methods§

source

fn write_minimal_binary( &mut self, n: u64, max: u64 ) -> Result<usize, Self::Error>

Object Safety§

This trait is not object safe.

Implementors§