pub enum StructChildren<'tree> {
Alias(Box<Alias<'tree>>),
Atom(Box<Atom<'tree>>),
Call(Box<Call<'tree>>),
Dot(Box<Dot<'tree>>),
Identifier(Box<Identifier<'tree>>),
QuotedAtom(Box<QuotedAtom<'tree>>),
UnaryOperator(Box<UnaryOperator<'tree>>),
}Variants§
Alias(Box<Alias<'tree>>)
Atom(Box<Atom<'tree>>)
Call(Box<Call<'tree>>)
Dot(Box<Dot<'tree>>)
Identifier(Box<Identifier<'tree>>)
QuotedAtom(Box<QuotedAtom<'tree>>)
UnaryOperator(Box<UnaryOperator<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for StructChildren<'tree>
impl<'tree> Clone for StructChildren<'tree>
Source§fn clone(&self) -> StructChildren<'tree>
fn clone(&self) -> StructChildren<'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 StructChildren<'tree>
impl<'tree> Debug for StructChildren<'tree>
impl<'tree> Eq for StructChildren<'tree>
Source§impl<'tree> FromNode<'tree> for StructChildren<'tree>
impl<'tree> FromNode<'tree> for StructChildren<'tree>
Source§impl<'tree> PartialEq for StructChildren<'tree>
impl<'tree> PartialEq for StructChildren<'tree>
Source§impl Spanned for StructChildren<'_>
impl Spanned for StructChildren<'_>
impl<'tree> StructuralPartialEq for StructChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for StructChildren<'tree>
impl<'tree> RefUnwindSafe for StructChildren<'tree>
impl<'tree> Send for StructChildren<'tree>
impl<'tree> Sync for StructChildren<'tree>
impl<'tree> Unpin for StructChildren<'tree>
impl<'tree> UnsafeUnpin for StructChildren<'tree>
impl<'tree> UnwindSafe for StructChildren<'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