pub enum ShOp {
Show 28 variants
Add,
Sub,
Mul,
Div,
Rem,
And,
Or,
BitXor,
BitAnd,
BitOr,
Shl,
Shr,
Eq,
Lt,
Le,
Ne,
Ge,
Gt,
AddEq,
SubEq,
MulEq,
DivEq,
RemEq,
BitXorEq,
BitAndEq,
BitOrEq,
ShlEq,
ShrEq,
}
Variants§
Add
Sub
Mul
Div
Rem
And
Or
BitXor
BitAnd
BitOr
Shl
Shr
Eq
Lt
Le
Ne
Ge
Gt
AddEq
SubEq
MulEq
DivEq
RemEq
BitXorEq
BitAndEq
BitOrEq
ShlEq
ShrEq
Implementations§
Trait Implementations§
impl StructuralPartialEq for ShOp
Auto Trait Implementations§
impl Freeze for ShOp
impl RefUnwindSafe for ShOp
impl Send for ShOp
impl Sync for ShOp
impl Unpin for ShOp
impl UnwindSafe for ShOp
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