Struct sqlx_models_parser::ast::Update [−][src]
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
Auto Trait Implementations
impl RefUnwindSafe for Update
impl UnwindSafe for Update
Blanket Implementations
Mutably borrows from an owned value. Read more