pub struct UpdateNode {
pub table_name: String,
pub assignments: Vec<(String, PlanExpression)>,
pub where_clause: Option<PlanExpression>,
}Expand description
UPDATE operation.
Fields§
§table_name: String§assignments: Vec<(String, PlanExpression)>§where_clause: Option<PlanExpression>Trait Implementations§
Source§impl Clone for UpdateNode
impl Clone for UpdateNode
Source§fn clone(&self) -> UpdateNode
fn clone(&self) -> UpdateNode
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 UpdateNode
impl RefUnwindSafe for UpdateNode
impl Send for UpdateNode
impl Sync for UpdateNode
impl Unpin for UpdateNode
impl UnsafeUnpin for UpdateNode
impl UnwindSafe for UpdateNode
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