pub trait ChannelCompressor: CompressorWriter {
// Required method
fn get_compressed(&self) -> Vec<u8>;
}
Expand description
Channel Compressor
A compressor for channels.
Required Methods§
Sourcefn get_compressed(&self) -> Vec<u8>
fn get_compressed(&self) -> Vec<u8>
Returns the compressed data buffer.