pub struct Filter { /* private fields */ }Expand description
Struct for filtering your queries.
These are automatically generated by operations
like MyModel::my_field.eq(5). You are not supposed to
construct them manually.
Stores the statement
and arguments. The statement should include placeholders
in the form of $1, $2 and so on.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl !UnwindSafe for Filter
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more