pub enum TypeQueryChildren<'tree> {
CallExpression(Box<CallExpression<'tree>>),
Identifier(Box<Identifier<'tree>>),
InstantiationExpression(Box<InstantiationExpression<'tree>>),
MemberExpression(Box<MemberExpression<'tree>>),
SubscriptExpression(Box<SubscriptExpression<'tree>>),
This(Box<This<'tree>>),
}Variants§
CallExpression(Box<CallExpression<'tree>>)
Identifier(Box<Identifier<'tree>>)
InstantiationExpression(Box<InstantiationExpression<'tree>>)
MemberExpression(Box<MemberExpression<'tree>>)
SubscriptExpression(Box<SubscriptExpression<'tree>>)
This(Box<This<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TypeQueryChildren<'tree>
impl<'tree> Clone for TypeQueryChildren<'tree>
Source§fn clone(&self) -> TypeQueryChildren<'tree>
fn clone(&self) -> TypeQueryChildren<'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 TypeQueryChildren<'tree>
impl<'tree> Debug for TypeQueryChildren<'tree>
Source§impl<'tree> FromNode<'tree> for TypeQueryChildren<'tree>
impl<'tree> FromNode<'tree> for TypeQueryChildren<'tree>
Source§impl<'tree> PartialEq for TypeQueryChildren<'tree>
impl<'tree> PartialEq for TypeQueryChildren<'tree>
Source§impl Spanned for TypeQueryChildren<'_>
impl Spanned for TypeQueryChildren<'_>
impl<'tree> Eq for TypeQueryChildren<'tree>
impl<'tree> StructuralPartialEq for TypeQueryChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TypeQueryChildren<'tree>
impl<'tree> RefUnwindSafe for TypeQueryChildren<'tree>
impl<'tree> Send for TypeQueryChildren<'tree>
impl<'tree> Sync for TypeQueryChildren<'tree>
impl<'tree> Unpin for TypeQueryChildren<'tree>
impl<'tree> UnsafeUnpin for TypeQueryChildren<'tree>
impl<'tree> UnwindSafe for TypeQueryChildren<'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