pub struct UnaryExpr {
pub op: UnaryOp,
pub expr: Expr,
}Expand description
Unary expression
Fields§
§op: UnaryOpThe unary operator
expr: ExprThe operand expression
Implementations§
Trait Implementations§
impl StructuralPartialEq for UnaryExpr
Auto Trait Implementations§
impl Freeze for UnaryExpr
impl RefUnwindSafe for UnaryExpr
impl Send for UnaryExpr
impl Sync for UnaryExpr
impl Unpin for UnaryExpr
impl UnwindSafe for UnaryExpr
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