pub struct UpdateExpression {
pub op: UpdateOp,
pub argument: Box<Expression>,
pub prefix: bool,
}Fields§
§op: UpdateOp§argument: Box<Expression>§prefix: boolTrait Implementations§
Source§impl Clone for UpdateExpression
impl Clone for UpdateExpression
Source§fn clone(&self) -> UpdateExpression
fn clone(&self) -> UpdateExpression
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 moreAuto Trait Implementations§
impl Freeze for UpdateExpression
impl RefUnwindSafe for UpdateExpression
impl Send for UpdateExpression
impl Sync for UpdateExpression
impl Unpin for UpdateExpression
impl UnsafeUnpin for UpdateExpression
impl UnwindSafe for UpdateExpression
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