pub trait Filter: Send { // Required method fn filter(&self) -> String; }
The Filter trait is implemented by all the filters.
Filter