pub enum GenericNameChildren<'tree> {
Identifier(Box<Identifier<'tree>>),
TypeArgumentList(Box<TypeArgumentList<'tree>>),
}Variants§
Identifier(Box<Identifier<'tree>>)
TypeArgumentList(Box<TypeArgumentList<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for GenericNameChildren<'tree>
impl<'tree> Clone for GenericNameChildren<'tree>
Source§fn clone(&self) -> GenericNameChildren<'tree>
fn clone(&self) -> GenericNameChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GenericNameChildren<'tree>
impl<'tree> Debug for GenericNameChildren<'tree>
impl<'tree> Eq for GenericNameChildren<'tree>
Source§impl<'tree> FromNode<'tree> for GenericNameChildren<'tree>
impl<'tree> FromNode<'tree> for GenericNameChildren<'tree>
Source§impl<'tree> PartialEq for GenericNameChildren<'tree>
impl<'tree> PartialEq for GenericNameChildren<'tree>
Source§impl Spanned for GenericNameChildren<'_>
impl Spanned for GenericNameChildren<'_>
impl<'tree> StructuralPartialEq for GenericNameChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for GenericNameChildren<'tree>
impl<'tree> RefUnwindSafe for GenericNameChildren<'tree>
impl<'tree> Send for GenericNameChildren<'tree>
impl<'tree> Sync for GenericNameChildren<'tree>
impl<'tree> Unpin for GenericNameChildren<'tree>
impl<'tree> UnsafeUnpin for GenericNameChildren<'tree>
impl<'tree> UnwindSafe for GenericNameChildren<'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