pub trait PipelineFn {
    fn name(&self) -> String;
    fn filter(&self, token: String) -> Option<String>;
}

Required Methods

Implementors