Enum xml::Xml
[−]
[src]
pub enum Xml { ElementNode(Element), CharacterNode(String), CDATANode(String), CommentNode(String), PINode(String), }
An Enum describing a XML Node
Variants
ElementNode(Element)
An XML Element
CharacterNode(String)
Character Data
CDATANode(String)
CDATA
CommentNode(String)
A XML Comment
PINode(String)
Processing Information
Trait Implementations
impl Clone for Xml
[src]
fn clone(&self) -> Xml
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Xml
[src]
fn eq(&self, __arg_0: &Xml) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Xml) -> bool
This method tests for !=
.