pub enum NamespaceDeclarationName<'tree> {
AliasQualifiedName(Box<AliasQualifiedName<'tree>>),
GenericName(Box<GenericName<'tree>>),
Identifier(Box<Identifier<'tree>>),
QualifiedName(Box<QualifiedName<'tree>>),
}Variants§
AliasQualifiedName(Box<AliasQualifiedName<'tree>>)
GenericName(Box<GenericName<'tree>>)
Identifier(Box<Identifier<'tree>>)
QualifiedName(Box<QualifiedName<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for NamespaceDeclarationName<'tree>
impl<'tree> Clone for NamespaceDeclarationName<'tree>
Source§fn clone(&self) -> NamespaceDeclarationName<'tree>
fn clone(&self) -> NamespaceDeclarationName<'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 NamespaceDeclarationName<'tree>
impl<'tree> Debug for NamespaceDeclarationName<'tree>
Source§impl<'tree> FromNode<'tree> for NamespaceDeclarationName<'tree>
impl<'tree> FromNode<'tree> for NamespaceDeclarationName<'tree>
Source§impl<'tree> PartialEq for NamespaceDeclarationName<'tree>
impl<'tree> PartialEq for NamespaceDeclarationName<'tree>
Source§fn eq(&self, other: &NamespaceDeclarationName<'tree>) -> bool
fn eq(&self, other: &NamespaceDeclarationName<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for NamespaceDeclarationName<'_>
impl Spanned for NamespaceDeclarationName<'_>
impl<'tree> Eq for NamespaceDeclarationName<'tree>
impl<'tree> StructuralPartialEq for NamespaceDeclarationName<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for NamespaceDeclarationName<'tree>
impl<'tree> RefUnwindSafe for NamespaceDeclarationName<'tree>
impl<'tree> Send for NamespaceDeclarationName<'tree>
impl<'tree> Sync for NamespaceDeclarationName<'tree>
impl<'tree> Unpin for NamespaceDeclarationName<'tree>
impl<'tree> UnsafeUnpin for NamespaceDeclarationName<'tree>
impl<'tree> UnwindSafe for NamespaceDeclarationName<'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