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