pub trait VariablePerValueDecompressor:
Debug
+ Send
+ Sync {
// Required method
fn decompress(&self, data: VariableWidthBlock) -> Result<DataBlock>;
}Required Methods§
Sourcefn decompress(&self, data: VariableWidthBlock) -> Result<DataBlock>
fn decompress(&self, data: VariableWidthBlock) -> Result<DataBlock>
Decompress one or more values
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".