pub struct DeleteArgs<M, W, I, S> {
pub where: W,
pub include: Option<I>,
pub select: Option<S>,
/* private fields */
}Expand description
Args for delete.
Fields§
§where: WUnique WHERE input.
include: Option<I>Optional include shape on the returning row.
select: Option<S>Optional select shape on the returning row.
Trait Implementations§
Auto Trait Implementations§
impl<M, W, I, S> Freeze for DeleteArgs<M, W, I, S>
impl<M, W, I, S> RefUnwindSafe for DeleteArgs<M, W, I, S>
impl<M, W, I, S> Send for DeleteArgs<M, W, I, S>
impl<M, W, I, S> Sync for DeleteArgs<M, W, I, S>
impl<M, W, I, S> Unpin for DeleteArgs<M, W, I, S>
impl<M, W, I, S> UnsafeUnpin for DeleteArgs<M, W, I, S>
impl<M, W, I, S> UnwindSafe for DeleteArgs<M, W, I, S>
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