pub enum MathDelimiterSet {
Tex,
Github,
}Expand description
Named math delimiter sets recognised by the Markdown parser.
Variants§
Tex
TeX delimiters: \(...\), \[...\], and LaTeX environments.
Github
GitHub-style dollar math, plus the TeX delimiters.
Trait Implementations§
Source§impl Clone for MathDelimiterSet
impl Clone for MathDelimiterSet
Source§fn clone(&self) -> MathDelimiterSet
fn clone(&self) -> MathDelimiterSet
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 moreSource§impl Debug for MathDelimiterSet
impl Debug for MathDelimiterSet
Source§impl Default for MathDelimiterSet
impl Default for MathDelimiterSet
Source§fn default() -> MathDelimiterSet
fn default() -> MathDelimiterSet
Returns the “default value” for a type. Read more
Source§impl PartialEq for MathDelimiterSet
impl PartialEq for MathDelimiterSet
Source§fn eq(&self, other: &MathDelimiterSet) -> bool
fn eq(&self, other: &MathDelimiterSet) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MathDelimiterSet
impl Eq for MathDelimiterSet
impl StructuralPartialEq for MathDelimiterSet
Auto Trait Implementations§
impl Freeze for MathDelimiterSet
impl RefUnwindSafe for MathDelimiterSet
impl Send for MathDelimiterSet
impl Sync for MathDelimiterSet
impl Unpin for MathDelimiterSet
impl UnsafeUnpin for MathDelimiterSet
impl UnwindSafe for MathDelimiterSet
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