pub trait CompressorPlugin:
Send
+ Sync
+ 'static {
// Required method
fn compress_chunk(&self, chunk: &dyn Array) -> VortexResult<ArrayRef>;
}Expand description
A boxed compressor function from arrays into compressed arrays.
API consumers are free to implement this trait to provide new plugin compressors.