pub trait Transform<Input>: ProcBlock {
    type Output;
    fn transform(&mut self, input: Input) -> Self::Output;
}
Expand description

Process some data, transforming it from one form to another.

Associated Types

Required methods

Implementors