pub enum MarkTypes {
Mark(Mark),
Delete(Delete),
Emphasis(Emphasis),
NontextualAnnotation(NontextualAnnotation),
Quote(Quote),
Strong(Strong),
Subscript(Subscript),
Superscript(Superscript),
}
Expand description
All type schemas that are derived from Mark
Variants§
Mark(Mark)
Delete(Delete)
Emphasis(Emphasis)
NontextualAnnotation(NontextualAnnotation)
Quote(Quote)
Strong(Strong)
Subscript(Subscript)
Superscript(Superscript)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MarkTypes
impl<'de> Deserialize<'de> for MarkTypes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MarkTypes
impl RefUnwindSafe for MarkTypes
impl Send for MarkTypes
impl Sync for MarkTypes
impl Unpin for MarkTypes
impl UnwindSafe for MarkTypes
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