pub enum BinaryOp {
Show 19 variants
Add,
Sub,
Mul,
Div,
Mod,
Eq,
NotEq,
Lt,
LtEq,
Gt,
GtEq,
And,
Or,
Concat,
Like,
BitAnd,
BitOr,
LeftShift,
RightShift,
}Expand description
Binary operators.