pub enum TupleTypeChildren<'tree> {
OptionalParameter(Box<OptionalParameter<'tree>>),
OptionalType(Box<OptionalType<'tree>>),
RequiredParameter(Box<RequiredParameter<'tree>>),
RestType(Box<RestType<'tree>>),
Type(Box<Type<'tree>>),
}Variants§
OptionalParameter(Box<OptionalParameter<'tree>>)
OptionalType(Box<OptionalType<'tree>>)
RequiredParameter(Box<RequiredParameter<'tree>>)
RestType(Box<RestType<'tree>>)
Type(Box<Type<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TupleTypeChildren<'tree>
impl<'tree> Clone for TupleTypeChildren<'tree>
Source§fn clone(&self) -> TupleTypeChildren<'tree>
fn clone(&self) -> TupleTypeChildren<'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 TupleTypeChildren<'tree>
impl<'tree> Debug for TupleTypeChildren<'tree>
impl<'tree> Eq for TupleTypeChildren<'tree>
Source§impl<'tree> FromNode<'tree> for TupleTypeChildren<'tree>
impl<'tree> FromNode<'tree> for TupleTypeChildren<'tree>
Source§impl<'tree> PartialEq for TupleTypeChildren<'tree>
impl<'tree> PartialEq for TupleTypeChildren<'tree>
Source§impl Spanned for TupleTypeChildren<'_>
impl Spanned for TupleTypeChildren<'_>
impl<'tree> StructuralPartialEq for TupleTypeChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TupleTypeChildren<'tree>
impl<'tree> RefUnwindSafe for TupleTypeChildren<'tree>
impl<'tree> Send for TupleTypeChildren<'tree>
impl<'tree> Sync for TupleTypeChildren<'tree>
impl<'tree> Unpin for TupleTypeChildren<'tree>
impl<'tree> UnsafeUnpin for TupleTypeChildren<'tree>
impl<'tree> UnwindSafe for TupleTypeChildren<'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