pub trait BuildableFilter<C: QueryContext> {
// Required method
fn where(self, e: Expression<C::Query>) -> Self;
}Expand description
TODO: add modifier traits and() or() allow to wrap existing r#where clause in a and/or statement with another
Required Methods§
fn where(self, e: Expression<C::Query>) -> Self
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.