pub enum BinaryExpressionRight<'tree> {
DynamicVariableName(Box<DynamicVariableName<'tree>>),
Expression(Box<Expression<'tree>>),
MemberAccessExpression(Box<MemberAccessExpression<'tree>>),
Name(Box<Name<'tree>>),
NullsafeMemberAccessExpression(Box<NullsafeMemberAccessExpression<'tree>>),
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>),
QualifiedName(Box<QualifiedName<'tree>>),
RelativeName(Box<RelativeName<'tree>>),
ScopedPropertyAccessExpression(Box<ScopedPropertyAccessExpression<'tree>>),
SubscriptExpression(Box<SubscriptExpression<'tree>>),
VariableName(Box<VariableName<'tree>>),
}Variants§
DynamicVariableName(Box<DynamicVariableName<'tree>>)
Expression(Box<Expression<'tree>>)
MemberAccessExpression(Box<MemberAccessExpression<'tree>>)
Name(Box<Name<'tree>>)
NullsafeMemberAccessExpression(Box<NullsafeMemberAccessExpression<'tree>>)
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>)
QualifiedName(Box<QualifiedName<'tree>>)
RelativeName(Box<RelativeName<'tree>>)
ScopedPropertyAccessExpression(Box<ScopedPropertyAccessExpression<'tree>>)
SubscriptExpression(Box<SubscriptExpression<'tree>>)
VariableName(Box<VariableName<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for BinaryExpressionRight<'tree>
impl<'tree> Clone for BinaryExpressionRight<'tree>
Source§fn clone(&self) -> BinaryExpressionRight<'tree>
fn clone(&self) -> BinaryExpressionRight<'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 BinaryExpressionRight<'tree>
impl<'tree> Debug for BinaryExpressionRight<'tree>
Source§impl<'tree> FromNode<'tree> for BinaryExpressionRight<'tree>
impl<'tree> FromNode<'tree> for BinaryExpressionRight<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for BinaryExpressionRight<'tree>
impl<'tree> RefUnwindSafe for BinaryExpressionRight<'tree>
impl<'tree> Send for BinaryExpressionRight<'tree>
impl<'tree> Sync for BinaryExpressionRight<'tree>
impl<'tree> Unpin for BinaryExpressionRight<'tree>
impl<'tree> UnsafeUnpin for BinaryExpressionRight<'tree>
impl<'tree> UnwindSafe for BinaryExpressionRight<'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