pub struct DeleteQuery<T: Table, O = ()> { /* private fields */ }Implementations§
Source§impl<T: Table, O> DeleteQuery<T, O>
impl<T: Table, O> DeleteQuery<T, O>
pub fn filter(self, expression: Expression) -> Self
pub fn returning<S: Selection>(self, selection: S) -> DeleteQuery<T, S::Output>
Trait Implementations§
Source§impl<T: Clone + Table, O: Clone> Clone for DeleteQuery<T, O>
impl<T: Clone + Table, O: Clone> Clone for DeleteQuery<T, O>
Source§fn clone(&self) -> DeleteQuery<T, O>
fn clone(&self) -> DeleteQuery<T, O>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T, O> Freeze for DeleteQuery<T, O>
impl<T, O> RefUnwindSafe for DeleteQuery<T, O>
impl<T, O> Send for DeleteQuery<T, O>
impl<T, O> Sync for DeleteQuery<T, O>
impl<T, O> Unpin for DeleteQuery<T, O>
impl<T, O> UnsafeUnpin for DeleteQuery<T, O>
impl<T, O> UnwindSafe for DeleteQuery<T, O>
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