Trait Filter

Source
pub trait Filter {
    // Required method
    fn filter(&self) -> String;
}
Expand description

Trait to be implemented for filtering. Returns the contents of a WHERE clause.

Required Methods§

Source

fn filter(&self) -> String

Implementors§