pub trait Processable {
type Input;
type Output;
fn process(
&self,
input: Self::Input,
context: &mut PipelineContext
) -> Result<Self::Output, PipelineError>;
}Required Associated Types
Required Methods
sourcefn process(