pub struct MathConversion {
pub processor_name: String,
pub mimetype: Option<String>,
pub xml: Option<NodeData>,
pub string: Option<String>,
pub src: Option<String>,
pub width: Option<String>,
pub height: Option<String>,
pub depth: Option<String>,
}Expand description
Result of converting a math node.
Fields§
§processor_name: StringThe processor that produced this conversion.
mimetype: Option<String>MIME type of the conversion (e.g., “application/mathml+xml”).
xml: Option<NodeData>The converted XML (as a NodeData tree).
string: Option<String>String representation (for non-XML formats).
src: Option<String>Image source path (for image-based conversions).
width: Option<String>Image width.
height: Option<String>Image height.
depth: Option<String>Image depth (baseline offset).
Trait Implementations§
Source§impl Clone for MathConversion
impl Clone for MathConversion
Source§fn clone(&self) -> MathConversion
fn clone(&self) -> MathConversion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for MathConversion
impl !Send for MathConversion
impl !Sync for MathConversion
impl !UnwindSafe for MathConversion
impl Freeze for MathConversion
impl Unpin for MathConversion
impl UnsafeUnpin for MathConversion
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