pub struct ResolvedBinaryOperator {
pub left: Box<ResolvedExpression>,
pub right: Box<ResolvedExpression>,
pub ast_operator_type: BinaryOperator,
pub resolved_type: ResolvedType,
}
Fields§
§left: Box<ResolvedExpression>
§right: Box<ResolvedExpression>
§ast_operator_type: BinaryOperator
§resolved_type: ResolvedType
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedBinaryOperator
impl !RefUnwindSafe for ResolvedBinaryOperator
impl !Send for ResolvedBinaryOperator
impl !Sync for ResolvedBinaryOperator
impl Unpin for ResolvedBinaryOperator
impl !UnwindSafe for ResolvedBinaryOperator
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