pub enum InfixOp {
Show 13 variants
Plus,
Minus,
Asterisk,
Slash,
Gt,
Lt,
Eq,
NotEq,
Ge,
Le,
Modulo,
LogicalAnd,
LogicalOr,
}Variants§
Trait Implementations§
impl Eq for InfixOp
impl StructuralPartialEq for InfixOp
Auto Trait Implementations§
impl Freeze for InfixOp
impl RefUnwindSafe for InfixOp
impl Send for InfixOp
impl Sync for InfixOp
impl Unpin for InfixOp
impl UnwindSafe for InfixOp
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