pub struct UpdateExpression {
pub operator: String,
pub argument: Box<Node>,
pub prefix: bool,
pub span: Option<Span>,
}Fields§
§operator: String§argument: Box<Node>§prefix: bool§span: Option<Span>Trait Implementations§
Source§impl Clone for UpdateExpression
impl Clone for UpdateExpression
Source§fn clone(&self) -> UpdateExpression
fn clone(&self) -> UpdateExpression
Returns a copy 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 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
Source§impl PartialEq for UpdateExpression
impl PartialEq for UpdateExpression
Source§impl Serialize for UpdateExpression
impl Serialize for UpdateExpression
impl StructuralPartialEq for UpdateExpression
Auto Trait Implementations§
impl Freeze for UpdateExpression
impl RefUnwindSafe for UpdateExpression
impl Send for UpdateExpression
impl Sync for UpdateExpression
impl Unpin 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