pub enum Calculation {
Plus = 0,
Minus = 1,
Times = 2,
Divides = 3,
Remainder = 4,
BitwiseAnd = 5,
BitwiseNot = 6,
Unknown = 7,
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for Calculation
impl RefUnwindSafe for Calculation
impl Send for Calculation
impl Sync for Calculation
impl Unpin for Calculation
impl UnwindSafe for Calculation
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