pub enum MathFontKind {
Bold,
Blackboard,
Calligraphic,
Roman,
Fraktur,
SansSerif,
Monospace,
}Expand description
The font family in a EqNode::MathFont node.
Variants§
Bold
\mathbf{...} — bold.
Blackboard
\mathbb{...} — double-struck / blackboard bold.
Calligraphic
\mathcal{...} — calligraphic / script.
Roman
\mathrm{...} — upright roman.
Fraktur
\mathfrak{...} — Fraktur / blackletter.
SansSerif
\mathsf{...} — sans-serif.
Monospace
\mathtt{...} — monospace / typewriter.
Trait Implementations§
Source§impl Clone for MathFontKind
impl Clone for MathFontKind
Source§fn clone(&self) -> MathFontKind
fn clone(&self) -> MathFontKind
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 MathFontKind
impl Debug for MathFontKind
impl Copy for MathFontKind
Auto Trait Implementations§
impl Freeze for MathFontKind
impl RefUnwindSafe for MathFontKind
impl Send for MathFontKind
impl Sync for MathFontKind
impl Unpin for MathFontKind
impl UnsafeUnpin for MathFontKind
impl UnwindSafe for MathFontKind
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