Compress

Trait Compress 

Source
pub trait Compress {
    // Required methods
    fn compress<D: CompressionFactor>(&mut self) -> &Self;
    fn decompress<D: CompressionFactor>(&mut self) -> &Self;
}

Required Methods§

Source

fn compress<D: CompressionFactor>(&mut self) -> &Self

Source

fn decompress<D: CompressionFactor>(&mut self) -> &Self

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§