Enum pulldown_cmark::Tag [] [src]

pub enum Tag<'a> {
    Paragraph,
    Rule,
    Header(i32),
    BlockQuote,
    CodeBlock(Cow<'a, str>),
    List(Option<usize>),
    Item,
    FootnoteDefinition(Cow<'a, str>),
    Table(i32),
    TableHead,
    TableRow,
    TableCell,
    Emphasis,
    Strong,
    Code,
    Link(Cow<'a, str>, Cow<'a, str>),
    Image(Cow<'a, str>, Cow<'a, str>),
}

Variants

Paragraph
Rule
Header
BlockQuote
CodeBlock
List
Item
FootnoteDefinition
Table
TableHead
TableRow
TableCell
Emphasis
Strong
Code
Image

Trait Implementations

Derived Implementations

impl<'a> Debug for Tag<'a>

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl<'a> Clone for Tag<'a>

fn clone(&self) -> Tag<'a>

1.0.0fn clone_from(&mut self, source: &Self)