pub enum ArithOp {
Add,
Sub,
Mul,
Div,
Mod,
}Expand description
Arithmetic operations.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArithOp
impl RefUnwindSafe for ArithOp
impl Send for ArithOp
impl Sync for ArithOp
impl Unpin for ArithOp
impl UnwindSafe for ArithOp
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