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
impl Eq for ArithmeticCombinatorParameterOperation
Source§impl From<ArithmeticCombinatorParameterOperation> for LuaAny
impl From<ArithmeticCombinatorParameterOperation> for LuaAny
Source§fn from(_: ArithmeticCombinatorParameterOperation) -> Self
fn from(_: ArithmeticCombinatorParameterOperation) -> Self
Converts to this type from the input type.
Source§impl From<ArithmeticCombinatorParameterOperation> for &'static str
impl From<ArithmeticCombinatorParameterOperation> for &'static str
Source§fn from(value: ArithmeticCombinatorParameterOperation) -> Self
fn from(value: ArithmeticCombinatorParameterOperation) -> Self
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