pub enum MethodReferenceChildren<'tree> {
Type(Box<Type<'tree>>),
PrimaryExpression(Box<PrimaryExpression<'tree>>),
Super(Box<Super<'tree>>),
TypeArguments(Box<TypeArguments<'tree>>),
}Variants§
Type(Box<Type<'tree>>)
PrimaryExpression(Box<PrimaryExpression<'tree>>)
Super(Box<Super<'tree>>)
TypeArguments(Box<TypeArguments<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for MethodReferenceChildren<'tree>
impl<'tree> Clone for MethodReferenceChildren<'tree>
Source§fn clone(&self) -> MethodReferenceChildren<'tree>
fn clone(&self) -> MethodReferenceChildren<'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 MethodReferenceChildren<'tree>
impl<'tree> Debug for MethodReferenceChildren<'tree>
Source§impl<'tree> FromNode<'tree> for MethodReferenceChildren<'tree>
impl<'tree> FromNode<'tree> for MethodReferenceChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for MethodReferenceChildren<'tree>
impl<'tree> RefUnwindSafe for MethodReferenceChildren<'tree>
impl<'tree> Send for MethodReferenceChildren<'tree>
impl<'tree> Sync for MethodReferenceChildren<'tree>
impl<'tree> Unpin for MethodReferenceChildren<'tree>
impl<'tree> UnsafeUnpin for MethodReferenceChildren<'tree>
impl<'tree> UnwindSafe for MethodReferenceChildren<'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