pub enum MathNodeType {
Show 27 variants
Math,
Annotation,
Semantics,
Mtext,
Mn,
Mo,
Mi,
Mspace,
Mover,
Munder,
Munderover,
Msup,
Msub,
Msubsup,
Mfrac,
Mroot,
Msqrt,
Mtable,
Mtr,
Mtd,
Mlabeledtr,
Mrow,
Menclose,
Mstyle,
Mpadded,
Mphantom,
Mglyph,
}
Expand description
MathML node types used in KaTeX
Variants§
Math
<math>
element
Annotation
<annotation>
element
Semantics
<semantics>
element
Mtext
<mtext>
element
Mn
<mn>
element
Mo
<mo>
element
Mi
<mi>
element
Mspace
<mspace>
element
Mover
<mover>
element
Munder
<munder>
element
Munderover
<munderover>
element
Msup
<msup>
element
Msub
<msub>
element
Msubsup
<msubsup>
element
Mfrac
<mfrac>
element
Mroot
<mroot>
element
Msqrt
<msqrt>
element
Mtable
<mtable>
element
Mtr
<mtr>
element
Mtd
<mtd>
element
Mlabeledtr
<mlabeledtr>
element
Mrow
<mrow>
element
Menclose
<menclose>
element
Mstyle
<mstyle>
element
Mpadded
<mpadded>
element
Mphantom
<mphantom>
element
Mglyph
<mglyph>
element
Trait Implementations§
Source§impl AsRef<str> for MathNodeType
impl AsRef<str> for MathNodeType
Source§impl Clone for MathNodeType
impl Clone for MathNodeType
Source§fn clone(&self) -> MathNodeType
fn clone(&self) -> MathNodeType
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 MathNodeType
impl Debug for MathNodeType
Source§impl PartialEq for MathNodeType
impl PartialEq for MathNodeType
impl Copy for MathNodeType
impl Eq for MathNodeType
impl StructuralPartialEq for MathNodeType
Auto Trait Implementations§
impl Freeze for MathNodeType
impl RefUnwindSafe for MathNodeType
impl Send for MathNodeType
impl Sync for MathNodeType
impl Unpin for MathNodeType
impl UnwindSafe for MathNodeType
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