Enum sql_parse::BinaryOperator
source · pub enum BinaryOperator {
Show 23 variants
Or,
Xor,
And,
Eq,
NullSafeEq,
GtEq,
Gt,
LtEq,
Lt,
Neq,
ShiftLeft,
ShiftRight,
BitAnd,
BitOr,
BitXor,
Add,
Subtract,
Divide,
Div,
Mod,
Mult,
Like,
NotLike,
}
Expand description
Binary operator to apply
Variants§
Or
Xor
And
Eq
NullSafeEq
GtEq
Gt
LtEq
Lt
Neq
ShiftLeft
ShiftRight
BitAnd
BitOr
BitXor
Add
Subtract
Divide
Div
Mod
Mult
Like
NotLike
Trait Implementations§
source§impl Clone for BinaryOperator
impl Clone for BinaryOperator
source§fn clone(&self) -> BinaryOperator
fn clone(&self) -> BinaryOperator
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more