pub enum ASTNodeOperation {
Show 18 variants
Add,
Subtract,
Multiply,
Divide,
Modulus,
Power,
And,
Xor,
Or,
Not,
Equal,
NotEqual,
Greater,
Less,
GreaterEqual,
LessEqual,
LeftShift,
RightShift,
}Variants§
Add
Subtract
Multiply
Divide
Modulus
Power
And
Xor
Or
Not
Equal
NotEqual
Greater
Less
GreaterEqual
LessEqual
LeftShift
RightShift
Trait Implementations§
Source§impl Clone for ASTNodeOperation
impl Clone for ASTNodeOperation
Source§fn clone(&self) -> ASTNodeOperation
fn clone(&self) -> ASTNodeOperation
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 moreSource§impl Debug for ASTNodeOperation
impl Debug for ASTNodeOperation
impl Eq for ASTNodeOperation
Source§impl PartialEq for ASTNodeOperation
impl PartialEq for ASTNodeOperation
Source§fn eq(&self, other: &ASTNodeOperation) -> bool
fn eq(&self, other: &ASTNodeOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ASTNodeOperation
Auto Trait Implementations§
impl Freeze for ASTNodeOperation
impl RefUnwindSafe for ASTNodeOperation
impl Send for ASTNodeOperation
impl Sync for ASTNodeOperation
impl Unpin for ASTNodeOperation
impl UnsafeUnpin for ASTNodeOperation
impl UnwindSafe for ASTNodeOperation
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