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