pub enum ArithmeticBinop {
Add,
Subtract,
Multiply,
Divide,
TruncDivide,
Remainder,
}
Variants§
Trait Implementations§
Source§impl Clone for ArithmeticBinop
impl Clone for ArithmeticBinop
Source§fn clone(&self) -> ArithmeticBinop
fn clone(&self) -> ArithmeticBinop
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArithmeticBinop
impl Debug for ArithmeticBinop
impl Copy for ArithmeticBinop
Auto Trait Implementations§
impl Freeze for ArithmeticBinop
impl RefUnwindSafe for ArithmeticBinop
impl Send for ArithmeticBinop
impl Sync for ArithmeticBinop
impl Unpin for ArithmeticBinop
impl UnwindSafe for ArithmeticBinop
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