Struct mathml::parsers::first_order_ode::FirstOrderODE
source · pub struct FirstOrderODE {
pub lhs_var: Ci,
pub func_of: Vec<Ci>,
pub with_respect_to: Ci,
pub rhs: MathExpressionTree,
}
Expand description
First order ordinary differential equation. This assumes that the left hand side of the equation consists solely of a derivative expressed in Leibniz or Newtonian notation.
Fields§
§lhs_var: Ci
The variable/univariate function on the LHS of the equation that is being differentiated. This variable may be referred to as a ‘specie’, ‘state’, or ‘vertex’ in the context of discussions about Petri Nets and RegNets.
func_of: Vec<Ci>
§with_respect_to: Ci
§rhs: MathExpressionTree
An expression tree corresponding to the RHS of the ODE.
Implementations§
source§impl FirstOrderODE
impl FirstOrderODE
Trait Implementations§
source§impl Clone for FirstOrderODE
impl Clone for FirstOrderODE
source§fn clone(&self) -> FirstOrderODE
fn clone(&self) -> FirstOrderODE
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 FirstOrderODE
impl Debug for FirstOrderODE
source§impl FromStr for FirstOrderODE
impl FromStr for FirstOrderODE
source§impl Hash for FirstOrderODE
impl Hash for FirstOrderODE
source§impl Ord for FirstOrderODE
impl Ord for FirstOrderODE
source§fn cmp(&self, other: &FirstOrderODE) -> Ordering
fn cmp(&self, other: &FirstOrderODE) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for FirstOrderODE
impl PartialEq for FirstOrderODE
source§fn eq(&self, other: &FirstOrderODE) -> bool
fn eq(&self, other: &FirstOrderODE) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FirstOrderODE
impl PartialOrd for FirstOrderODE
source§fn partial_cmp(&self, other: &FirstOrderODE) -> Option<Ordering>
fn partial_cmp(&self, other: &FirstOrderODE) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for FirstOrderODE
impl StructuralPartialEq for FirstOrderODE
Auto Trait Implementations§
impl RefUnwindSafe for FirstOrderODE
impl Send for FirstOrderODE
impl Sync for FirstOrderODE
impl Unpin for FirstOrderODE
impl UnwindSafe for FirstOrderODE
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.