#[repr(u32)]pub enum VariantOperator {
Show 26 variants
Equal = 0,
NotEqual = 1,
Less = 2,
LessEqual = 3,
Greater = 4,
GreaterEqual = 5,
Add = 6,
Subtact = 7,
Multiply = 8,
Divide = 9,
Negate = 10,
Positive = 11,
Module = 12,
Concat = 13,
ShiftLeft = 14,
ShiftRight = 15,
BitAnd = 16,
BitOr = 17,
BitXor = 18,
BitNegate = 19,
And = 20,
Or = 21,
Xor = 22,
Not = 23,
In = 24,
Max = 25,
}
Variants§
Equal = 0
NotEqual = 1
Less = 2
LessEqual = 3
Greater = 4
GreaterEqual = 5
Add = 6
Subtact = 7
Multiply = 8
Divide = 9
Negate = 10
Positive = 11
Module = 12
Concat = 13
ShiftLeft = 14
ShiftRight = 15
BitAnd = 16
BitOr = 17
BitXor = 18
BitNegate = 19
And = 20
Or = 21
Xor = 22
Not = 23
In = 24
Max = 25
Trait Implementations§
Source§impl Clone for VariantOperator
impl Clone for VariantOperator
Source§fn clone(&self) -> VariantOperator
fn clone(&self) -> VariantOperator
Returns a copy 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 VariantOperator
impl Debug for VariantOperator
Source§impl Hash for VariantOperator
impl Hash for VariantOperator
Source§impl PartialEq for VariantOperator
impl PartialEq for VariantOperator
impl Copy for VariantOperator
impl Eq for VariantOperator
impl StructuralPartialEq for VariantOperator
Auto Trait Implementations§
impl Freeze for VariantOperator
impl RefUnwindSafe for VariantOperator
impl Send for VariantOperator
impl Sync for VariantOperator
impl Unpin for VariantOperator
impl UnwindSafe for VariantOperator
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