pub struct ExprBinop {
pub operator: BinaryOperator,
pub lhs: Box<Expression>,
pub rhs: Box<Expression>,
}Expand description
A parsed binary operator expression.
Fields§
§operator: BinaryOperatorThe operator
lhs: Box<Expression>Left hand side
rhs: Box<Expression>Right hand side.