pub enum AugmentedAssignmentRight<'tree> {
Assignment(Box<Assignment<'tree>>),
AugmentedAssignment(Box<AugmentedAssignment<'tree>>),
Expression(Box<Expression<'tree>>),
ExpressionList(Box<ExpressionList<'tree>>),
PatternList(Box<PatternList<'tree>>),
Yield(Box<Yield<'tree>>),
}Variants§
Assignment(Box<Assignment<'tree>>)
AugmentedAssignment(Box<AugmentedAssignment<'tree>>)
Expression(Box<Expression<'tree>>)
ExpressionList(Box<ExpressionList<'tree>>)
PatternList(Box<PatternList<'tree>>)
Yield(Box<Yield<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for AugmentedAssignmentRight<'tree>
impl<'tree> Clone for AugmentedAssignmentRight<'tree>
Source§fn clone(&self) -> AugmentedAssignmentRight<'tree>
fn clone(&self) -> AugmentedAssignmentRight<'tree>
Returns a duplicate 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<'tree> Debug for AugmentedAssignmentRight<'tree>
impl<'tree> Debug for AugmentedAssignmentRight<'tree>
Source§impl<'tree> FromNode<'tree> for AugmentedAssignmentRight<'tree>
impl<'tree> FromNode<'tree> for AugmentedAssignmentRight<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AugmentedAssignmentRight<'tree>
impl<'tree> RefUnwindSafe for AugmentedAssignmentRight<'tree>
impl<'tree> Send for AugmentedAssignmentRight<'tree>
impl<'tree> Sync for AugmentedAssignmentRight<'tree>
impl<'tree> Unpin for AugmentedAssignmentRight<'tree>
impl<'tree> UnsafeUnpin for AugmentedAssignmentRight<'tree>
impl<'tree> UnwindSafe for AugmentedAssignmentRight<'tree>
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