pub enum ResolvedBinaryOperatorKind {
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 ResolvedBinaryOperatorKind
impl RefUnwindSafe for ResolvedBinaryOperatorKind
impl Send for ResolvedBinaryOperatorKind
impl Sync for ResolvedBinaryOperatorKind
impl Unpin for ResolvedBinaryOperatorKind
impl UnwindSafe for ResolvedBinaryOperatorKind
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