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