Struct sql_from_models_parser::ast::Update
source · 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§
source§impl PartialEq<Update> for Update
impl PartialEq<Update> for Update
impl Eq for Update
impl StructuralEq for Update
impl StructuralPartialEq for Update
Auto Trait Implementations§
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