pub enum BinaryOperatorKind {
Show 14 variants
Add,
Subtract,
Multiply,
Divide,
Modulo,
LogicalOr,
LogicalAnd,
Equal,
NotEqual,
LessThan,
LessEqual,
GreaterThan,
GreaterEqual,
NoneCoalescingOperator,
}Variants§
Add
Subtract
Multiply
Divide
Modulo
LogicalOr
LogicalAnd
Equal
NotEqual
LessThan
LessEqual
GreaterThan
GreaterEqual
NoneCoalescingOperator
Trait Implementations§
Source§impl Clone for BinaryOperatorKind
impl Clone for BinaryOperatorKind
Source§fn clone(&self) -> BinaryOperatorKind
fn clone(&self) -> BinaryOperatorKind
Returns a duplicate 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 moreSource§impl Debug for BinaryOperatorKind
impl Debug for BinaryOperatorKind
Source§impl PartialEq for BinaryOperatorKind
impl PartialEq for BinaryOperatorKind
impl Eq for BinaryOperatorKind
impl StructuralPartialEq for BinaryOperatorKind
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