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

ParagraphRuleHeader(i32)BlockQuoteCodeBlock(Cow<'a, str>)List(Option<usize>)ItemFootnoteDefinition(Cow<'a, str>)Table(i32)TableHeadTableRowTableCellEmphasisStrongCodeLink(Cow<'a, str>, Cow<'a, str>)Image(Cow<'a, str>, Cow<'a, str>)

Trait Implementations

impl<'a> Debug for Tag<'a>
[src]

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

Formats the value using the given formatter.

impl<'a> Clone for Tag<'a>
[src]

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

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more