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(String)Event indicating processing information was found
ElementStart(StartTag)Event indicating a start tag was found
ElementEnd(EndTag)Event indicating a end tag was found
Characters(String)Event indicating character data was found
CDATA(String)Event indicating CDATA was found
Comment(String)Event indicating a comment was found
Trait Implementations
impl PartialEq for Event[src]
fn eq(&self, __arg_0: &Event) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Event) -> bool
This method tests for !=.