pub trait DeltaRead<E: Endianness>: BitRead<E> {
    // Required methods
    fn read_delta(&mut self) -> Result<u64, Self::Error>;
    fn skip_delta(&mut self) -> Result<(), Self::Error>;
}
Expand description

Trait for reading δ codes.

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

Required Methods§

source

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

source

fn skip_delta(&mut self) -> Result<(), Self::Error>

Object Safety§

This trait is not object safe.

Implementors§