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

Event indicating processing information was found

Event indicating a start tag was found

Event indicating a end tag was found

Event indicating character data was found

Event indicating CDATA was found

Event indicating a comment was found

Trait Implementations

impl PartialEq for Event
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Event
[src]

impl Debug for Event
[src]

Formats the value using the given formatter.