pub trait Layer {
// Required methods
fn kind(&self) -> LayerKind;
fn process(&self, input: LayerInput) -> LayerOutput;
}Expand description
A single processing stage in the compression pipeline.
pub trait Layer {
// Required methods
fn kind(&self) -> LayerKind;
fn process(&self, input: LayerInput) -> LayerOutput;
}A single processing stage in the compression pipeline.