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