pub enum BinaryExprOp {
Show 14 variants
Add,
Sub,
Mul,
Div,
Gt,
Ge,
Lt,
Le,
Eq,
Neq,
And,
Or,
Mod,
Assign,
}Variants§
Trait Implementations§
Source§impl Debug for BinaryExprOp
impl Debug for BinaryExprOp
Auto Trait Implementations§
impl Freeze for BinaryExprOp
impl RefUnwindSafe for BinaryExprOp
impl Send for BinaryExprOp
impl Sync for BinaryExprOp
impl Unpin for BinaryExprOp
impl UnwindSafe for BinaryExprOp
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