pub struct Math {
pub type_: Math_,
pub text: String,
pub errors: Option<Vec<String>>,
pub id: Option<Box<String>>,
pub math_language: Option<Box<String>>,
}
Expand description
A mathematical variable or equation.
Fields§
§type_: Math_
The name of this type
text: String
The text of the equation in the language.
errors: Option<Vec<String>>
Errors that occurred when parsing the math equation.
id: Option<Box<String>>
The identifier for this item.
math_language: Option<Box<String>>
The language used for the equation e.g tex, mathml, asciimath.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Math
impl<'de> Deserialize<'de> for Math
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 Math
impl RefUnwindSafe for Math
impl Send for Math
impl Sync for Math
impl Unpin for Math
impl UnwindSafe for Math
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