pub trait AttributeProvider { // Required method fn get_attr(&self, attr: &LocalName) -> Option<String>; }
The attribute provider trait
Return the value of the given custom attibute if it exists.