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

Trait for writing minimal binary codes.

This is the trait you should usually pull in scope to write 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§

source§

impl<BO: Endianness, B: BitWrite<BO>> MinimalBinaryWrite<BO> for B