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