pub enum InvocationExpressionFunction<'tree> {
AliasQualifiedName(Box<AliasQualifiedName<'tree>>),
CastExpression(Box<CastExpression<'tree>>),
ConditionalAccessExpression(Box<ConditionalAccessExpression<'tree>>),
ElementAccessExpression(Box<ElementAccessExpression<'tree>>),
Expression(Box<Expression<'tree>>),
GenericName(Box<GenericName<'tree>>),
Identifier(Box<Identifier<'tree>>),
InvocationExpression(Box<InvocationExpression<'tree>>),
MemberAccessExpression(Box<MemberAccessExpression<'tree>>),
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>),
QualifiedName(Box<QualifiedName<'tree>>),
}Variants§
AliasQualifiedName(Box<AliasQualifiedName<'tree>>)
CastExpression(Box<CastExpression<'tree>>)
ConditionalAccessExpression(Box<ConditionalAccessExpression<'tree>>)
ElementAccessExpression(Box<ElementAccessExpression<'tree>>)
Expression(Box<Expression<'tree>>)
GenericName(Box<GenericName<'tree>>)
Identifier(Box<Identifier<'tree>>)
InvocationExpression(Box<InvocationExpression<'tree>>)
MemberAccessExpression(Box<MemberAccessExpression<'tree>>)
ParenthesizedExpression(Box<ParenthesizedExpression<'tree>>)
QualifiedName(Box<QualifiedName<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for InvocationExpressionFunction<'tree>
impl<'tree> Clone for InvocationExpressionFunction<'tree>
Source§fn clone(&self) -> InvocationExpressionFunction<'tree>
fn clone(&self) -> InvocationExpressionFunction<'tree>
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 moreSource§impl<'tree> Debug for InvocationExpressionFunction<'tree>
impl<'tree> Debug for InvocationExpressionFunction<'tree>
impl<'tree> Eq for InvocationExpressionFunction<'tree>
Source§impl<'tree> FromNode<'tree> for InvocationExpressionFunction<'tree>
impl<'tree> FromNode<'tree> for InvocationExpressionFunction<'tree>
Source§impl<'tree> PartialEq for InvocationExpressionFunction<'tree>
impl<'tree> PartialEq for InvocationExpressionFunction<'tree>
Source§impl Spanned for InvocationExpressionFunction<'_>
impl Spanned for InvocationExpressionFunction<'_>
impl<'tree> StructuralPartialEq for InvocationExpressionFunction<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for InvocationExpressionFunction<'tree>
impl<'tree> RefUnwindSafe for InvocationExpressionFunction<'tree>
impl<'tree> Send for InvocationExpressionFunction<'tree>
impl<'tree> Sync for InvocationExpressionFunction<'tree>
impl<'tree> Unpin for InvocationExpressionFunction<'tree>
impl<'tree> UnsafeUnpin for InvocationExpressionFunction<'tree>
impl<'tree> UnwindSafe for InvocationExpressionFunction<'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