pub struct AssignmentExpression {
pub op: AssignOp,
pub left: AssignmentTarget,
pub right: Box<Expression>,
}Fields§
§op: AssignOp§left: AssignmentTarget§right: Box<Expression>Trait Implementations§
Source§impl Clone for AssignmentExpression
impl Clone for AssignmentExpression
Source§fn clone(&self) -> AssignmentExpression
fn clone(&self) -> AssignmentExpression
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 AssignmentExpression
impl RefUnwindSafe for AssignmentExpression
impl Send for AssignmentExpression
impl Sync for AssignmentExpression
impl Unpin for AssignmentExpression
impl UnsafeUnpin for AssignmentExpression
impl UnwindSafe for AssignmentExpression
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