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