pub enum BlockKind {
Show 13 variants
FenceOpen {
fence_char: char,
fence_len: usize,
indent: usize,
lang: String,
},
FenceClose,
FenceContent,
MathOpen,
MathClose,
MathContent,
TableSeparator,
TableRow,
Header {
level: usize,
text: String,
},
ThematicBreak,
ListItem {
indent: usize,
marker: String,
separator: String,
content: String,
is_ordered: bool,
},
BlankLine,
Paragraph,
}Variants§
FenceOpen
FenceClose
FenceContent
MathOpen
MathClose
MathContent
TableSeparator
TableRow
Header
ThematicBreak
ListItem
BlankLine
Paragraph
Trait Implementations§
impl StructuralPartialEq for BlockKind
Auto Trait Implementations§
impl Freeze for BlockKind
impl RefUnwindSafe for BlockKind
impl Send for BlockKind
impl Sync for BlockKind
impl Unpin for BlockKind
impl UnwindSafe for BlockKind
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