pub enum MethodName<'tree> {
NonlocalVariable(Box<NonlocalVariable<'tree>>),
Constant(Box<Constant<'tree>>),
DelimitedSymbol(Box<DelimitedSymbol<'tree>>),
Identifier(Box<Identifier<'tree>>),
Operator(Box<Operator<'tree>>),
Setter(Box<Setter<'tree>>),
SimpleSymbol(Box<SimpleSymbol<'tree>>),
}Variants§
NonlocalVariable(Box<NonlocalVariable<'tree>>)
Constant(Box<Constant<'tree>>)
DelimitedSymbol(Box<DelimitedSymbol<'tree>>)
Identifier(Box<Identifier<'tree>>)
Operator(Box<Operator<'tree>>)
Setter(Box<Setter<'tree>>)
SimpleSymbol(Box<SimpleSymbol<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for MethodName<'tree>
impl<'tree> Clone for MethodName<'tree>
Source§fn clone(&self) -> MethodName<'tree>
fn clone(&self) -> MethodName<'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 MethodName<'tree>
impl<'tree> Debug for MethodName<'tree>
Source§impl<'tree> FromNode<'tree> for MethodName<'tree>
impl<'tree> FromNode<'tree> for MethodName<'tree>
Source§impl<'tree> PartialEq for MethodName<'tree>
impl<'tree> PartialEq for MethodName<'tree>
Source§impl Spanned for MethodName<'_>
impl Spanned for MethodName<'_>
impl<'tree> Eq for MethodName<'tree>
impl<'tree> StructuralPartialEq for MethodName<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for MethodName<'tree>
impl<'tree> RefUnwindSafe for MethodName<'tree>
impl<'tree> Send for MethodName<'tree>
impl<'tree> Sync for MethodName<'tree>
impl<'tree> Unpin for MethodName<'tree>
impl<'tree> UnsafeUnpin for MethodName<'tree>
impl<'tree> UnwindSafe for MethodName<'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