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