pub enum ChildrenElement<'tree> {
AllNames(Box<AllNames<'tree>>),
AssociatedType(Box<AssociatedType<'tree>>),
Constructor(Box<Constructor<'tree>>),
PrefixId(Box<PrefixId<'tree>>),
Qualified(Box<Qualified<'tree>>),
Variable(Box<Variable<'tree>>),
}Variants§
AllNames(Box<AllNames<'tree>>)
AssociatedType(Box<AssociatedType<'tree>>)
Constructor(Box<Constructor<'tree>>)
PrefixId(Box<PrefixId<'tree>>)
Qualified(Box<Qualified<'tree>>)
Variable(Box<Variable<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ChildrenElement<'tree>
impl<'tree> Clone for ChildrenElement<'tree>
Source§fn clone(&self) -> ChildrenElement<'tree>
fn clone(&self) -> ChildrenElement<'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 ChildrenElement<'tree>
impl<'tree> Debug for ChildrenElement<'tree>
impl<'tree> Eq for ChildrenElement<'tree>
Source§impl<'tree> FromNode<'tree> for ChildrenElement<'tree>
impl<'tree> FromNode<'tree> for ChildrenElement<'tree>
Source§impl<'tree> PartialEq for ChildrenElement<'tree>
impl<'tree> PartialEq for ChildrenElement<'tree>
Source§impl Spanned for ChildrenElement<'_>
impl Spanned for ChildrenElement<'_>
impl<'tree> StructuralPartialEq for ChildrenElement<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ChildrenElement<'tree>
impl<'tree> RefUnwindSafe for ChildrenElement<'tree>
impl<'tree> Send for ChildrenElement<'tree>
impl<'tree> Sync for ChildrenElement<'tree>
impl<'tree> Unpin for ChildrenElement<'tree>
impl<'tree> UnsafeUnpin for ChildrenElement<'tree>
impl<'tree> UnwindSafe for ChildrenElement<'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