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

The tag's name

The tag's namespace

The tag's prefix

The tag's attributes

Trait Implementations

impl PartialEq for StartTag
[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 StartTag
[src]

impl Debug for StartTag
[src]

Formats the value using the given formatter.