pub enum Operations {
Add,
Subtract,
Multiply,
Divide,
Power,
}Expand description
Four basic operations as an enum!
Variants§
Trait Implementations§
Source§impl Debug for Operations
impl Debug for Operations
Source§impl PartialEq for Operations
impl PartialEq for Operations
impl StructuralPartialEq for Operations
Auto Trait Implementations§
impl Freeze for Operations
impl RefUnwindSafe for Operations
impl Send for Operations
impl Sync for Operations
impl Unpin for Operations
impl UnsafeUnpin for Operations
impl UnwindSafe for Operations
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