pub trait ExprResult<F> {
// Required methods
fn add(&self, other: &Self) -> Self;
fn mul(&self, other: &Expression<F>) -> Self;
}
Expand description
Trait for doing math on Expressions, no matter the type they are stored in
Required Methods§
Object Safety§
This trait is not object safe.