pub enum BinOp {
Show 21 variants
Exp,
Mul,
Div,
FDiv,
Mod,
Add,
Sub,
Concat,
Lsh,
Rsh,
BitAnd,
BitXor,
BitOr,
Lt,
Gt,
Le,
Ge,
Ne,
Eq,
And,
Or,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinOp
impl RefUnwindSafe for BinOp
impl Send for BinOp
impl Sync for BinOp
impl Unpin for BinOp
impl UnwindSafe for BinOp
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