pub enum ExpressionOperations {
Show 15 variants
Plus,
Minus,
Multiply,
Divide,
ShiftLeft,
ShiftRight,
And,
Or,
Xor,
Eq,
NotEq,
Great,
Less,
GreatEq,
LessEq,
}
Variants§
Trait Implementations§
source§impl Clone for ExpressionOperations
impl Clone for ExpressionOperations
source§fn clone(&self) -> ExpressionOperations
fn clone(&self) -> ExpressionOperations
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 ExpressionOperations
impl Debug for ExpressionOperations
source§impl From<ExpressionOperations> for ExpressionOperations
impl From<ExpressionOperations> for ExpressionOperations
source§fn from(value: ExpressionOperations) -> Self
fn from(value: ExpressionOperations) -> Self
Converts to this type from the input type.
source§impl PartialEq<ExpressionOperations> for ExpressionOperations
impl PartialEq<ExpressionOperations> for ExpressionOperations
source§fn eq(&self, other: &ExpressionOperations) -> bool
fn eq(&self, other: &ExpressionOperations) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ExpressionOperations
impl StructuralEq for ExpressionOperations
impl StructuralPartialEq for ExpressionOperations
Auto Trait Implementations§
impl RefUnwindSafe for ExpressionOperations
impl Send for ExpressionOperations
impl Sync for ExpressionOperations
impl Unpin for ExpressionOperations
impl UnwindSafe for ExpressionOperations
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