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§
Source§impl Clone for BinaryOperatorKind
impl Clone for BinaryOperatorKind
Source§fn clone(&self) -> BinaryOperatorKind
fn clone(&self) -> BinaryOperatorKind
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 moreAuto 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