pub struct UpdateExpression {
pub base: BaseNode,
pub operator: UpdateOperator,
pub argument: Box<Expression>,
pub prefix: bool,
}Fields§
§base: BaseNode§operator: UpdateOperator§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 moreSource§impl Debug for UpdateExpression
impl Debug for UpdateExpression
Source§impl<'de> Deserialize<'de> for UpdateExpression
impl<'de> Deserialize<'de> for UpdateExpression
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto 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