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