pub enum UseListChildren<'tree> {
Crate(Box<Crate<'tree>>),
Identifier(Box<Identifier<'tree>>),
Metavariable(Box<Metavariable<'tree>>),
ScopedIdentifier(Box<ScopedIdentifier<'tree>>),
ScopedUseList(Box<ScopedUseList<'tree>>),
SelfType(Box<SelfType<'tree>>),
Super(Box<Super<'tree>>),
UseAsClause(Box<UseAsClause<'tree>>),
UseList(Box<UseList<'tree>>),
UseWildcard(Box<UseWildcard<'tree>>),
}Variants§
Crate(Box<Crate<'tree>>)
Identifier(Box<Identifier<'tree>>)
Metavariable(Box<Metavariable<'tree>>)
ScopedIdentifier(Box<ScopedIdentifier<'tree>>)
ScopedUseList(Box<ScopedUseList<'tree>>)
SelfType(Box<SelfType<'tree>>)
Super(Box<Super<'tree>>)
UseAsClause(Box<UseAsClause<'tree>>)
UseList(Box<UseList<'tree>>)
UseWildcard(Box<UseWildcard<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for UseListChildren<'tree>
impl<'tree> Clone for UseListChildren<'tree>
Source§fn clone(&self) -> UseListChildren<'tree>
fn clone(&self) -> UseListChildren<'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 UseListChildren<'tree>
impl<'tree> Debug for UseListChildren<'tree>
Source§impl<'tree> FromNode<'tree> for UseListChildren<'tree>
impl<'tree> FromNode<'tree> for UseListChildren<'tree>
Source§impl<'tree> PartialEq for UseListChildren<'tree>
impl<'tree> PartialEq for UseListChildren<'tree>
Source§impl Spanned for UseListChildren<'_>
impl Spanned for UseListChildren<'_>
impl<'tree> Eq for UseListChildren<'tree>
impl<'tree> StructuralPartialEq for UseListChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for UseListChildren<'tree>
impl<'tree> RefUnwindSafe for UseListChildren<'tree>
impl<'tree> Send for UseListChildren<'tree>
impl<'tree> Sync for UseListChildren<'tree>
impl<'tree> Unpin for UseListChildren<'tree>
impl<'tree> UnsafeUnpin for UseListChildren<'tree>
impl<'tree> UnwindSafe for UseListChildren<'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