pub trait FlavoredFilter {
// Required method
fn filter<C, R>(&self, conn: &C) -> Result<String>
where C: Connection<R>,
R: Row;
}
Expand description
Trait to be implemented for filtering. Returns the contents of a WHERE
clause.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.