pub enum BinOp {
Show 22 variants
AddInt,
SubInt,
MulInt,
DivInt,
ModInt,
AddFloat,
SubFloat,
MulFloat,
DivFloat,
ConcatStr,
LtInt,
GtInt,
LeInt,
GeInt,
LtFloat,
GtFloat,
LeFloat,
GeFloat,
Eq,
Ne,
Andalso,
Orelse,
}Variants§
AddInt
SubInt
MulInt
DivInt
ModInt
AddFloat
SubFloat
MulFloat
DivFloat
ConcatStr
LtInt
GtInt
LeInt
GeInt
LtFloat
GtFloat
LeFloat
GeFloat
Eq
Ne
Andalso
Orelse
Trait Implementations§
impl Copy for BinOp
impl Eq for BinOp
impl StructuralPartialEq for BinOp
Auto Trait Implementations§
impl Freeze for BinOp
impl RefUnwindSafe for BinOp
impl Send for BinOp
impl Sync for BinOp
impl Unpin for BinOp
impl UnsafeUnpin 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