pub enum AssignmentExpressionLeft<'tree> {
ArrayPattern(Box<ArrayPattern<'tree>>),
Identifier(Box<Identifier<'tree>>),
MemberExpression(Box<MemberExpression<'tree>>),
ObjectPattern(Box<ObjectPattern<'tree>>),
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>),
SubscriptExpression(Box<SubscriptExpression<'tree>>),
Undefined(Box<Undefined<'tree>>),
}Variants§
ArrayPattern(Box<ArrayPattern<'tree>>)
Identifier(Box<Identifier<'tree>>)
MemberExpression(Box<MemberExpression<'tree>>)
ObjectPattern(Box<ObjectPattern<'tree>>)
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>)
SubscriptExpression(Box<SubscriptExpression<'tree>>)
Undefined(Box<Undefined<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for AssignmentExpressionLeft<'tree>
impl<'tree> Clone for AssignmentExpressionLeft<'tree>
Source§fn clone(&self) -> AssignmentExpressionLeft<'tree>
fn clone(&self) -> AssignmentExpressionLeft<'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 AssignmentExpressionLeft<'tree>
impl<'tree> Debug for AssignmentExpressionLeft<'tree>
Source§impl<'tree> FromNode<'tree> for AssignmentExpressionLeft<'tree>
impl<'tree> FromNode<'tree> for AssignmentExpressionLeft<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AssignmentExpressionLeft<'tree>
impl<'tree> RefUnwindSafe for AssignmentExpressionLeft<'tree>
impl<'tree> Send for AssignmentExpressionLeft<'tree>
impl<'tree> Sync for AssignmentExpressionLeft<'tree>
impl<'tree> Unpin for AssignmentExpressionLeft<'tree>
impl<'tree> UnsafeUnpin for AssignmentExpressionLeft<'tree>
impl<'tree> UnwindSafe for AssignmentExpressionLeft<'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