pub enum SupportStatus {
DirectUnicode,
ParsedConstruct,
RecognisedNoOutput,
Unsupported,
}Expand description
Whether mdwright can currently interpret a known command.
Variants§
DirectUnicode
Command maps directly to Unicode text.
ParsedConstruct
Parser has a typed construct for this command.
RecognisedNoOutput
Command is recognised but intentionally produces no visible text.
Unsupported
Command is known from MathJax-style input but unsupported here.
Trait Implementations§
Source§impl Clone for SupportStatus
impl Clone for SupportStatus
Source§fn clone(&self) -> SupportStatus
fn clone(&self) -> SupportStatus
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 SupportStatus
impl Debug for SupportStatus
Source§impl PartialEq for SupportStatus
impl PartialEq for SupportStatus
Source§fn eq(&self, other: &SupportStatus) -> bool
fn eq(&self, other: &SupportStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportStatus
impl Eq for SupportStatus
impl StructuralPartialEq for SupportStatus
Auto Trait Implementations§
impl Freeze for SupportStatus
impl RefUnwindSafe for SupportStatus
impl Send for SupportStatus
impl Sync for SupportStatus
impl Unpin for SupportStatus
impl UnsafeUnpin for SupportStatus
impl UnwindSafe for SupportStatus
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