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