pub struct GoverningEquationYaml {
pub latex: String,
pub plain_text: String,
pub description: String,
pub variables: Vec<VariableYaml>,
pub equation_type: String,
}Expand description
Governing equation section.
Fields§
§latex: StringLaTeX representation
plain_text: StringPlain text representation
description: StringDescription
variables: Vec<VariableYaml>Variables
equation_type: StringEquation type classification
Trait Implementations§
Source§impl Clone for GoverningEquationYaml
impl Clone for GoverningEquationYaml
Source§fn clone(&self) -> GoverningEquationYaml
fn clone(&self) -> GoverningEquationYaml
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 GoverningEquationYaml
impl Debug for GoverningEquationYaml
Source§impl<'de> Deserialize<'de> for GoverningEquationYaml
impl<'de> Deserialize<'de> for GoverningEquationYaml
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 GoverningEquationYaml
impl RefUnwindSafe for GoverningEquationYaml
impl Send for GoverningEquationYaml
impl Sync for GoverningEquationYaml
impl Unpin for GoverningEquationYaml
impl UnsafeUnpin for GoverningEquationYaml
impl UnwindSafe for GoverningEquationYaml
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