pub enum ArithmeticCombinatorParameterOperation {
Mul,
Div,
Add,
Sub,
Mod,
Pow,
Shl,
Shr,
AND,
OR,
XOR,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ArithmeticCombinatorParameterOperation
impl Clone for ArithmeticCombinatorParameterOperation
Source§fn clone(&self) -> ArithmeticCombinatorParameterOperation
fn clone(&self) -> ArithmeticCombinatorParameterOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ArithmeticCombinatorParameterOperation
Source§impl Default for ArithmeticCombinatorParameterOperation
impl Default for ArithmeticCombinatorParameterOperation
Source§fn default() -> ArithmeticCombinatorParameterOperation
fn default() -> ArithmeticCombinatorParameterOperation
Returns the “default value” for a type. Read more
impl Eq for ArithmeticCombinatorParameterOperation
Source§impl From<ArithmeticCombinatorParameterOperation> for &'static str
impl From<ArithmeticCombinatorParameterOperation> for &'static str
Source§fn from(value: ArithmeticCombinatorParameterOperation) -> &'static str
fn from(value: ArithmeticCombinatorParameterOperation) -> &'static str
Converts to this type from the input type.
impl StructuralPartialEq for ArithmeticCombinatorParameterOperation
Auto Trait Implementations§
impl Freeze for ArithmeticCombinatorParameterOperation
impl RefUnwindSafe for ArithmeticCombinatorParameterOperation
impl Send for ArithmeticCombinatorParameterOperation
impl Sync for ArithmeticCombinatorParameterOperation
impl Unpin for ArithmeticCombinatorParameterOperation
impl UnsafeUnpin for ArithmeticCombinatorParameterOperation
impl UnwindSafe for ArithmeticCombinatorParameterOperation
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