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> Clone for Event<'a>[src]
impl<'a> Clone for Event<'a>fn clone(&self) -> Event<'a>[src]
fn clone(&self) -> Event<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<'a> Debug for Event<'a>[src]
impl<'a> Debug for Event<'a>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> PartialEq for Event<'a>[src]
impl<'a> PartialEq for Event<'a>