pub trait MinimalBinaryRead<BO: Endianness>: BitRead<BO> {
    // Provided methods
    fn read_minimal_binary(&mut self, max: u64) -> Result<u64, Self::Error> { ... }
    fn skip_minimal_binary(&mut self, max: u64) -> Result<(), Self::Error> { ... }
}
Expand description

Trait for reading minimal binary codes.

This is the trait you should usually pull in scope to read minimal binary codes.

Provided Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<BO: Endianness, B: BitRead<BO>> MinimalBinaryRead<BO> for B