Trait DeltaWrite

Source
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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§