pub enum ScopedTypeIdentifierPath<'tree> {
BracketedType(Box<BracketedType<'tree>>),
Crate(Box<Crate<'tree>>),
GenericType(Box<GenericType<'tree>>),
Identifier(Box<Identifier<'tree>>),
Metavariable(Box<Metavariable<'tree>>),
ScopedIdentifier(Box<ScopedIdentifier<'tree>>),
SelfType(Box<SelfType<'tree>>),
Super(Box<Super<'tree>>),
}Variants§
BracketedType(Box<BracketedType<'tree>>)
Crate(Box<Crate<'tree>>)
GenericType(Box<GenericType<'tree>>)
Identifier(Box<Identifier<'tree>>)
Metavariable(Box<Metavariable<'tree>>)
ScopedIdentifier(Box<ScopedIdentifier<'tree>>)
SelfType(Box<SelfType<'tree>>)
Super(Box<Super<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ScopedTypeIdentifierPath<'tree>
impl<'tree> Clone for ScopedTypeIdentifierPath<'tree>
Source§fn clone(&self) -> ScopedTypeIdentifierPath<'tree>
fn clone(&self) -> ScopedTypeIdentifierPath<'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 ScopedTypeIdentifierPath<'tree>
impl<'tree> Debug for ScopedTypeIdentifierPath<'tree>
Source§impl<'tree> FromNode<'tree> for ScopedTypeIdentifierPath<'tree>
impl<'tree> FromNode<'tree> for ScopedTypeIdentifierPath<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ScopedTypeIdentifierPath<'tree>
impl<'tree> RefUnwindSafe for ScopedTypeIdentifierPath<'tree>
impl<'tree> Send for ScopedTypeIdentifierPath<'tree>
impl<'tree> Sync for ScopedTypeIdentifierPath<'tree>
impl<'tree> Unpin for ScopedTypeIdentifierPath<'tree>
impl<'tree> UnsafeUnpin for ScopedTypeIdentifierPath<'tree>
impl<'tree> UnwindSafe for ScopedTypeIdentifierPath<'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