pub trait Processable {
    type Input;
    type Output;
    fn process(
        &self,
        input: Self::Input,
        context: &mut PipelineContext
    ) -> Self::Output; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors