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