pub enum ExpressionData {
Show 13 variants
Number {
value: i64,
},
Float {
value: f64,
},
Symbol {
name: String,
},
Add {
terms: Vec<ExpressionData>,
},
Mul {
factors: Vec<ExpressionData>,
},
Pow {
base: Box<ExpressionData>,
exponent: Box<ExpressionData>,
},
Function {
name: String,
args: Vec<ExpressionData>,
},
Complex {
real: Box<ExpressionData>,
imag: Box<ExpressionData>,
},
Constant {
constant: MathConstant,
},
Derivative {
expression: Box<ExpressionData>,
variable: String,
order: u32,
},
Integral {
integrand: Box<ExpressionData>,
variable: String,
bounds: Option<(Box<ExpressionData>, Box<ExpressionData>)>,
},
Limit {
expression: Box<ExpressionData>,
variable: String,
approach: Box<ExpressionData>,
direction: LimitDirection,
},
MethodCall {
object: Box<ExpressionData>,
method_name: String,
args: Vec<ExpressionData>,
},
}Expand description
Serializable representation of mathematical expressions
Variants§
Number
Float
Symbol
Add
Fields
§
terms: Vec<ExpressionData>Mul
Fields
§
factors: Vec<ExpressionData>Pow
Function
Complex
Constant
Fields
§
constant: MathConstantDerivative
Integral
Limit
MethodCall
Trait Implementations§
Source§impl Clone for ExpressionData
impl Clone for ExpressionData
Source§fn clone(&self) -> ExpressionData
fn clone(&self) -> ExpressionData
Returns a duplicate 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 ExpressionData
impl Debug for ExpressionData
Source§impl<'de> Deserialize<'de> for ExpressionData
impl<'de> Deserialize<'de> for ExpressionData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExpressionData
impl RefUnwindSafe for ExpressionData
impl Send for ExpressionData
impl Sync for ExpressionData
impl Unpin for ExpressionData
impl UnwindSafe for ExpressionData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more