pub trait Compress { // Required method fn compress(&self, input: Bytes) -> Result<Bytes>; }
Interface to adapt compression implementations for use with Selium.
Fallibly compress the input bytes, and output as bytes.
input