Enum pulldown_cmark::CodeBlockKind
source · [−]pub enum CodeBlockKind<'a> {
Indented,
Fenced(CowStr<'a>),
}
Expand description
Codeblock kind.
Variants
Indented
Fenced(CowStr<'a>)
The value contained in the tag describes the language of the code, which may be empty.
Implementations
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for CodeBlockKind<'a>
impl<'a> Send for CodeBlockKind<'a>
impl<'a> Sync for CodeBlockKind<'a>
impl<'a> Unpin for CodeBlockKind<'a>
impl<'a> UnwindSafe for CodeBlockKind<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more