Struct xml::attribute::Attribute
[−]
[src]
pub struct Attribute<'a> {
pub name: Name<'a>,
pub value: &'a str,
}A borrowed version of an XML attribute.
Consists of a borrowed qualified name and a borrowed string value.
Fields
name | Attribute name. |
value | Attribute value. |