pub trait Filter { // Required method fn filter(&self) -> String; }
Trait to be implemented for filtering. Returns the contents of a WHERE clause.
WHERE