pub enum TupleChildren<'tree> {
Show 25 variants
AccessCall(Box<AccessCall<'tree>>),
Alias(Box<Alias<'tree>>),
AnonymousFunction(Box<AnonymousFunction<'tree>>),
Atom(Box<Atom<'tree>>),
BinaryOperator(Box<BinaryOperator<'tree>>),
Bitstring(Box<Bitstring<'tree>>),
Block(Box<Block<'tree>>),
Boolean(Box<Boolean<'tree>>),
Call(Box<Call<'tree>>),
Char(Box<Char<'tree>>),
Charlist(Box<Charlist<'tree>>),
Dot(Box<Dot<'tree>>),
Float(Box<Float<'tree>>),
Identifier(Box<Identifier<'tree>>),
Integer(Box<Integer<'tree>>),
Keywords(Box<Keywords<'tree>>),
List(Box<List<'tree>>),
Map(Box<Map<'tree>>),
Nil(Box<Nil<'tree>>),
OperatorIdentifier(Box<OperatorIdentifier<'tree>>),
QuotedAtom(Box<QuotedAtom<'tree>>),
Sigil(Box<Sigil<'tree>>),
String(Box<String<'tree>>),
Tuple(Box<Tuple<'tree>>),
UnaryOperator(Box<UnaryOperator<'tree>>),
}Variants§
AccessCall(Box<AccessCall<'tree>>)
Alias(Box<Alias<'tree>>)
AnonymousFunction(Box<AnonymousFunction<'tree>>)
Atom(Box<Atom<'tree>>)
BinaryOperator(Box<BinaryOperator<'tree>>)
Bitstring(Box<Bitstring<'tree>>)
Block(Box<Block<'tree>>)
Boolean(Box<Boolean<'tree>>)
Call(Box<Call<'tree>>)
Char(Box<Char<'tree>>)
Charlist(Box<Charlist<'tree>>)
Dot(Box<Dot<'tree>>)
Float(Box<Float<'tree>>)
Identifier(Box<Identifier<'tree>>)
Integer(Box<Integer<'tree>>)
Keywords(Box<Keywords<'tree>>)
List(Box<List<'tree>>)
Map(Box<Map<'tree>>)
Nil(Box<Nil<'tree>>)
OperatorIdentifier(Box<OperatorIdentifier<'tree>>)
QuotedAtom(Box<QuotedAtom<'tree>>)
Sigil(Box<Sigil<'tree>>)
String(Box<String<'tree>>)
Tuple(Box<Tuple<'tree>>)
UnaryOperator(Box<UnaryOperator<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TupleChildren<'tree>
impl<'tree> Clone for TupleChildren<'tree>
Source§fn clone(&self) -> TupleChildren<'tree>
fn clone(&self) -> TupleChildren<'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 TupleChildren<'tree>
impl<'tree> Debug for TupleChildren<'tree>
impl<'tree> Eq for TupleChildren<'tree>
Source§impl<'tree> FromNode<'tree> for TupleChildren<'tree>
impl<'tree> FromNode<'tree> for TupleChildren<'tree>
Source§impl<'tree> PartialEq for TupleChildren<'tree>
impl<'tree> PartialEq for TupleChildren<'tree>
Source§impl Spanned for TupleChildren<'_>
impl Spanned for TupleChildren<'_>
impl<'tree> StructuralPartialEq for TupleChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TupleChildren<'tree>
impl<'tree> RefUnwindSafe for TupleChildren<'tree>
impl<'tree> Send for TupleChildren<'tree>
impl<'tree> Sync for TupleChildren<'tree>
impl<'tree> Unpin for TupleChildren<'tree>
impl<'tree> UnsafeUnpin for TupleChildren<'tree>
impl<'tree> UnwindSafe for TupleChildren<'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