pub enum FunctionOperation {
Sum,
Diff,
Multiply,
Divide,
Power,
Composite,
}Variants§
Trait Implementations§
source§impl Clone for FunctionOperation
impl Clone for FunctionOperation
source§fn clone(&self) -> FunctionOperation
fn clone(&self) -> FunctionOperation
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 FunctionOperation
impl Debug for FunctionOperation
source§impl PartialEq<FunctionOperation> for FunctionOperation
impl PartialEq<FunctionOperation> for FunctionOperation
source§fn eq(&self, other: &FunctionOperation) -> bool
fn eq(&self, other: &FunctionOperation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.