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