Struct sqlx_models_parser::ast::BinaryOp [−][src]
pub struct BinaryOp {
pub left: Box<Expr>,
pub op: BinaryOperator,
pub right: Box<Expr>,
}Expand description
Binary operation e.g. 1 + 1 or foo > bar
Fields
left: Box<Expr>op: BinaryOperatorright: Box<Expr>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BinaryOp
impl UnwindSafe for BinaryOp
Blanket Implementations
Mutably borrows from an owned value. Read more