Struct xml::StartTag
[−]
[src]
pub struct StartTag {
pub name: String,
pub ns: Option<String>,
pub prefix: Option<String>,
pub attributes: HashMap<(String, Option<String>), String>,
}Structure describing an opening tag
Fields
name: String
The tag's name
ns: Option<String>
The tag's namespace
prefix: Option<String>
The tag's prefix
attributes: HashMap<(String, Option<String>), String>
The tag's attributes
Trait Implementations
impl PartialEq for StartTag[src]
fn eq(&self, __arg_0: &StartTag) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StartTag) -> bool
This method tests for !=.