pub enum MathOp {
Add,
Subtract,
Multiply,
Divide,
Modulo,
Power,
Root,
Factorial,
}Variants§
Trait Implementations§
impl OperatorTrait for MathOp
impl StructuralPartialEq for MathOp
Auto Trait Implementations§
impl Freeze for MathOp
impl RefUnwindSafe for MathOp
impl Send for MathOp
impl Sync for MathOp
impl Unpin for MathOp
impl UnwindSafe for MathOp
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