pub struct NestedUpdateManyData<T: Model> {
pub filter: Filter,
pub data: Vec<(String, FilterValue)>,
/* private fields */
}Expand description
Data for updating many nested records.
Fields§
§filter: FilterFilter to match records.
data: Vec<(String, FilterValue)>The update data fields.
Implementations§
Trait Implementations§
Source§impl<T: Clone + Model> Clone for NestedUpdateManyData<T>
impl<T: Clone + Model> Clone for NestedUpdateManyData<T>
Source§fn clone(&self) -> NestedUpdateManyData<T>
fn clone(&self) -> NestedUpdateManyData<T>
Returns a duplicate of the value. Read more
1.0.0 · 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> Freeze for NestedUpdateManyData<T>
impl<T> RefUnwindSafe for NestedUpdateManyData<T>where
T: RefUnwindSafe,
impl<T> Send for NestedUpdateManyData<T>
impl<T> Sync for NestedUpdateManyData<T>
impl<T> Unpin for NestedUpdateManyData<T>where
T: Unpin,
impl<T> UnwindSafe for NestedUpdateManyData<T>where
T: 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