pub struct UpdateStmt {
pub table: String,
pub assignments: Vec<(String, Expr)>,
pub where_clause: Option<Expr>,
}Fields§
§table: String§assignments: Vec<(String, Expr)>§where_clause: Option<Expr>Trait Implementations§
Source§impl Clone for UpdateStmt
impl Clone for UpdateStmt
Source§fn clone(&self) -> UpdateStmt
fn clone(&self) -> UpdateStmt
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateStmt
impl RefUnwindSafe for UpdateStmt
impl Send for UpdateStmt
impl Sync for UpdateStmt
impl Unpin for UpdateStmt
impl UnsafeUnpin for UpdateStmt
impl UnwindSafe for UpdateStmt
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