pub struct ResolvedUnaryOperator {
pub left: Box<ResolvedExpression>,
pub kind: ResolvedUnaryOperatorKind,
pub resolved_type: ResolvedType,
pub node: ResolvedNode,
}
Fields§
§left: Box<ResolvedExpression>
§kind: ResolvedUnaryOperatorKind
§resolved_type: ResolvedType
§node: ResolvedNode
Trait Implementations§
Source§impl Debug for ResolvedUnaryOperator
impl Debug for ResolvedUnaryOperator
Auto Trait Implementations§
impl Freeze for ResolvedUnaryOperator
impl !RefUnwindSafe for ResolvedUnaryOperator
impl !Send for ResolvedUnaryOperator
impl !Sync for ResolvedUnaryOperator
impl Unpin for ResolvedUnaryOperator
impl !UnwindSafe for ResolvedUnaryOperator
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