pub struct UpdateWhereBuilder<'db, T, F, SE, ST>{ /* private fields */ }Expand description
Builder for closure-based bulk updates, returned by RedDb::update_where.
Select documents with .filter (set at construction), cap with .limit(),
provide the transformation with .with(), then execute via .exec() or
.returning().
Implementations§
Auto Trait Implementations§
impl<'db, T, F, SE, ST> !RefUnwindSafe for UpdateWhereBuilder<'db, T, F, SE, ST>
impl<'db, T, F, SE, ST> !UnwindSafe for UpdateWhereBuilder<'db, T, F, SE, ST>
impl<'db, T, F, SE, ST> Freeze for UpdateWhereBuilder<'db, T, F, SE, ST>where
F: Freeze,
impl<'db, T, F, SE, ST> Send for UpdateWhereBuilder<'db, T, F, SE, ST>
impl<'db, T, F, SE, ST> Sync for UpdateWhereBuilder<'db, T, F, SE, ST>
impl<'db, T, F, SE, ST> Unpin for UpdateWhereBuilder<'db, T, F, SE, ST>
impl<'db, T, F, SE, ST> UnsafeUnpin for UpdateWhereBuilder<'db, T, F, SE, ST>where
F: UnsafeUnpin,
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