pub enum BinOp_ {
BiAdd,
BiSub,
BiMul,
BiDiv,
BiRem,
BiAnd,
BiOr,
BiBitXor,
BiBitAnd,
BiBitOr,
BiShl,
BiShr,
BiEq,
BiLt,
BiLe,
BiNe,
BiGe,
BiGt,
}
Variants
BiAdd | The + operator (addition)
|
BiSub | The - operator (subtraction)
|
BiMul | The * operator (multiplication)
|
BiDiv | The / operator (division)
|
BiRem | |
BiAnd | The && operator (logical and)
|
BiOr | The || operator (logical or)
|
BiBitXor | The ^ operator (bitwise xor)
|
BiBitAnd | The & operator (bitwise and)
|
BiBitOr | The | operator (bitwise or)
|
BiShl | The << operator (shift left)
|
BiShr | The >> operator (shift right)
|
BiEq | The == operator (equality)
|
BiLt | The < operator (less than)
|
BiLe | The <= operator (less than or equal to)
|
BiNe | The != operator (not equal to)
|
BiGe | The >= operator (greater than or equal to)
|
BiGt | The > operator (greater than)
|
Trait Implementations
Derived Implementations