Enum pulldown_cmark::Event [] [src]

pub enum Event<'a> {
    Start(Tag<'a>),
    End(Tag<'a>),
    Text(Cow<'a, str>),
    Html(Cow<'a, str>),
    InlineHtml(Cow<'a, str>),
    FootnoteReference(Cow<'a, str>),
    SoftBreak,
    HardBreak,
}

Variants

Start(Tag<'a>)End(Tag<'a>)Text(Cow<'a, str>)Html(Cow<'a, str>)InlineHtml(Cow<'a, str>)FootnoteReference(Cow<'a, str>)SoftBreakHardBreak

Trait Implementations

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

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

Formats the value using the given formatter.