pub enum BinaryOp {
Show 13 variants
Or,
And,
Equal,
NotEqual,
GreaterThan,
GreaterEqual,
LessThan,
LessEqual,
Add,
Subtract,
Multiply,
Divide,
Exponent,
}
Variants§
Or
And
Equal
NotEqual
GreaterThan
GreaterEqual
LessThan
LessEqual
Add
Subtract
Multiply
Divide
Exponent
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinaryOp
impl RefUnwindSafe for BinaryOp
impl Send for BinaryOp
impl Sync for BinaryOp
impl Unpin for BinaryOp
impl UnwindSafe for BinaryOp
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