pub enum BinaryOperator {
Equal,
NotEqual,
LessThan,
LessThanOrEqual,
GreaterThan,
GreaterThanOrEqual,
}Expand description
Binary operators
This enum represents all the binary operators.
§Variants
Equal- The==operatorNotEqual- The!=operatorLessThan- The<operatorLessThanOrEqual- The<=operatorGreaterThan- The>operatorGreaterThanOrEqual- The>=operator
Variants§
Equal
The == operator
NotEqual
The != operator
LessThan
The < operator
LessThanOrEqual
The <= operator
GreaterThan
The > operator
GreaterThanOrEqual
The >= operator
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinaryOperator
impl RefUnwindSafe for BinaryOperator
impl Send for BinaryOperator
impl Sync for BinaryOperator
impl Unpin for BinaryOperator
impl UnwindSafe for BinaryOperator
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