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