pub struct DeleteManyArgs<M, W> {
pub where: Option<W>,
/* private fields */
}Expand description
Args for delete_many.
Fields§
§where: Option<W>Optional WHERE input.
Trait Implementations§
Source§impl<M: Clone, W: Clone> Clone for DeleteManyArgs<M, W>
impl<M: Clone, W: Clone> Clone for DeleteManyArgs<M, W>
Source§fn clone(&self) -> DeleteManyArgs<M, W>
fn clone(&self) -> DeleteManyArgs<M, W>
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<M, W> Freeze for DeleteManyArgs<M, W>where
W: Freeze,
impl<M, W> RefUnwindSafe for DeleteManyArgs<M, W>where
W: RefUnwindSafe,
M: RefUnwindSafe,
impl<M, W> Send for DeleteManyArgs<M, W>
impl<M, W> Sync for DeleteManyArgs<M, W>
impl<M, W> Unpin for DeleteManyArgs<M, W>
impl<M, W> UnsafeUnpin for DeleteManyArgs<M, W>where
W: UnsafeUnpin,
impl<M, W> UnwindSafe for DeleteManyArgs<M, W>where
W: UnwindSafe,
M: UnwindSafe,
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