Enum xml::Event [-] [+] [src]

pub enum Event {
    PI(String),
    ElementStart(StartTag),
    ElementEnd(EndTag),
    Characters(String),
    CDATA(String),
    Comment(String),
}

Events returned by the Parser

Variants

PI

Event indicating processing information was found

ElementStart

Event indicating a start tag was found

ElementEnd

Event indicating a end tag was found

Characters

Event indicating character data was found

CDATA

Event indicating CDATA was found

Comment

Event indicating a comment was found

Trait Implementations

Derived Implementations

impl Debug for Event

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

impl Eq for Event

impl PartialEq for Event

fn eq(&self, __arg_0: &Event) -> bool

fn ne(&self, __arg_0: &Event) -> bool