pub struct UnaryOpExpression<'tree> {
pub span: Span,
pub argument: Option<Expression<'tree>>,
pub operator: Option<UnaryOpExpressionOperator>,
pub children: Option<Integer<'tree>>,
}Fields§
§span: Span§argument: Option<Expression<'tree>>§operator: Option<UnaryOpExpressionOperator>§children: Option<Integer<'tree>>Trait Implementations§
Source§impl<'tree> Clone for UnaryOpExpression<'tree>
impl<'tree> Clone for UnaryOpExpression<'tree>
Source§fn clone(&self) -> UnaryOpExpression<'tree>
fn clone(&self) -> UnaryOpExpression<'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 UnaryOpExpression<'tree>
impl<'tree> Debug for UnaryOpExpression<'tree>
Source§impl<'tree> FromNode<'tree> for UnaryOpExpression<'tree>
impl<'tree> FromNode<'tree> for UnaryOpExpression<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for UnaryOpExpression<'tree>
impl<'tree> RefUnwindSafe for UnaryOpExpression<'tree>
impl<'tree> Send for UnaryOpExpression<'tree>
impl<'tree> Sync for UnaryOpExpression<'tree>
impl<'tree> Unpin for UnaryOpExpression<'tree>
impl<'tree> UnsafeUnpin for UnaryOpExpression<'tree>
impl<'tree> UnwindSafe for UnaryOpExpression<'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