pub struct UnaryPrefixExpr {
pub op: UnaryPrefixOp,
pub operand: Box<Expr>,
}Fields§
§op: UnaryPrefixOp§operand: Box<Expr>Trait Implementations§
Source§impl Clone for UnaryPrefixExpr
impl Clone for UnaryPrefixExpr
Source§fn clone(&self) -> UnaryPrefixExpr
fn clone(&self) -> UnaryPrefixExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnaryPrefixExpr
impl Debug for UnaryPrefixExpr
Auto Trait Implementations§
impl Freeze for UnaryPrefixExpr
impl RefUnwindSafe for UnaryPrefixExpr
impl Send for UnaryPrefixExpr
impl Sync for UnaryPrefixExpr
impl Unpin for UnaryPrefixExpr
impl UnsafeUnpin for UnaryPrefixExpr
impl UnwindSafe for UnaryPrefixExpr
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