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

Trait Implementations

Derived Implementations

impl Debug for StartTag

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Eq for StartTag

impl PartialEq for StartTag

fn eq(&self, __arg_0: &StartTag) -> bool

fn ne(&self, __arg_0: &StartTag) -> bool