pub struct Update {
pub table_name: ObjectName,
pub assignments: Vec<Assignment>,
pub selection: Option<Expr>,
}
Expand description
UPDATE
Fields§
§table_name: ObjectName
TABLE
assignments: Vec<Assignment>
Column assignments
selection: Option<Expr>
WHERE
Trait Implementations§
impl Eq for Update
impl StructuralPartialEq for Update
Auto Trait Implementations§
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnwindSafe for Update
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