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