pub trait DeltaWrite<E: Endianness>: BitWrite<E> {
    // Required method
    fn write_delta(&mut self, n: u64) -> Result<usize, Self::Error>;
}
Expand description

Trait for writing δ codes.

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§