pub struct UnaryOperator {
pub left: Box<Expression>,
pub kind: UnaryOperatorKind,
pub node: Node,
}
Fields§
§left: Box<Expression>
§kind: UnaryOperatorKind
§node: Node
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UnaryOperator
impl !RefUnwindSafe for UnaryOperator
impl !Send for UnaryOperator
impl !Sync for UnaryOperator
impl Unpin for UnaryOperator
impl !UnwindSafe for UnaryOperator
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