pub trait AttrMethods {
    // Required methods
    fn GetNamespaceURI(&self) -> Option<DOMString>;
    fn GetPrefix(&self) -> Option<DOMString>;
    fn LocalName(&self) -> DOMString;
    fn Name(&self) -> DOMString;
    fn Value(&self) -> DOMString;
    fn SetValue(&self, value: DOMString);
    fn GetOwnerElement(&self) -> Option<Root<Dom<Element>>>;
    fn Specified(&self) -> bool;
}

Required Methods§

Implementors§