pub trait Processable {
    type Input;
    type Output;

    fn process(
        &self,
        input: Self::Input,
        context: &mut PipelineContext
    ) -> Self::Output; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors