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