pub struct SqlUpdate {
pub table: SqlIdent,
pub assignments: Vec<SqlSet>,
pub filter: Option<SqlExpr>,
}Expand description
UPDATE table SET cols [ WHERE predicate ]
Fields§
§table: SqlIdent§assignments: Vec<SqlSet>§filter: Option<SqlExpr>Auto Trait Implementations§
impl Freeze for SqlUpdate
impl RefUnwindSafe for SqlUpdate
impl Send for SqlUpdate
impl Sync for SqlUpdate
impl Unpin for SqlUpdate
impl UnwindSafe for SqlUpdate
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