pub trait ProcessingStep { // Required method fn process(&self, event: Event) -> Option<Event>; }
A step in the processing pipeline.