pub type Attr = Attribute;Expand description
An alias of html5ever::Attribute
Aliased Type§
pub struct Attr {
pub name: QualName,
pub value: Tendril<UTF8>,
}Fields§
§name: QualNameThe name of the attribute (e.g. the class in <div class="test">)
value: Tendril<UTF8>The value of the attribute (e.g. the "test" in <div class="test">)