pub struct UpdateExpr {
pub source: String,
pub filter: Option<Expr>,
pub assignments: Vec<Assignment>,
}Fields§
§source: String§filter: Option<Expr>§assignments: Vec<Assignment>Trait Implementations§
Source§impl Clone for UpdateExpr
impl Clone for UpdateExpr
Source§fn clone(&self) -> UpdateExpr
fn clone(&self) -> UpdateExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateExpr
impl Debug for UpdateExpr
Source§impl PartialEq for UpdateExpr
impl PartialEq for UpdateExpr
Source§fn eq(&self, other: &UpdateExpr) -> bool
fn eq(&self, other: &UpdateExpr) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateExpr
Auto Trait Implementations§
impl Freeze for UpdateExpr
impl RefUnwindSafe for UpdateExpr
impl Send for UpdateExpr
impl Sync for UpdateExpr
impl Unpin for UpdateExpr
impl UnsafeUnpin for UpdateExpr
impl UnwindSafe for UpdateExpr
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