pub enum BinaryOperatorKind {
Show 14 variants
Add,
Subtract,
Multiply,
Divide,
Modulo,
LogicalOr,
LogicalAnd,
Equal,
NotEqual,
LessThan,
LessEqual,
GreaterThan,
GreaterEqual,
RangeExclusive,
}
Variants§
Add
Subtract
Multiply
Divide
Modulo
LogicalOr
LogicalAnd
Equal
NotEqual
LessThan
LessEqual
GreaterThan
GreaterEqual
RangeExclusive
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinaryOperatorKind
impl RefUnwindSafe for BinaryOperatorKind
impl Send for BinaryOperatorKind
impl Sync for BinaryOperatorKind
impl Unpin for BinaryOperatorKind
impl UnwindSafe for BinaryOperatorKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more