pub enum BinaryOperation {
Arithmetic {
lhs: Operand,
operator: Operator,
rhs: Operand,
operation_type: VarType,
},
Conditional {
lhs: Operand,
condition: Condition,
rhs: Operand,
operation_type: VarType,
},
}Variants§
Trait Implementations§
source§impl Clone for BinaryOperation
impl Clone for BinaryOperation
source§fn clone(&self) -> BinaryOperation
fn clone(&self) -> BinaryOperation
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 BinaryOperation
impl Debug for BinaryOperation
source§impl PartialEq for BinaryOperation
impl PartialEq for BinaryOperation
source§fn eq(&self, other: &BinaryOperation) -> bool
fn eq(&self, other: &BinaryOperation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BinaryOperation
Auto Trait Implementations§
impl RefUnwindSafe for BinaryOperation
impl Send for BinaryOperation
impl Sync for BinaryOperation
impl Unpin for BinaryOperation
impl UnwindSafe for BinaryOperation
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