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 | The tag's name |
ns | The tag's namespace |
prefix | The tag's prefix |
attributes | The tag's attributes |