pub trait HTMLOutputElementMethods {
Show 15 methods // Required methods fn GetForm(&self) -> Option<Root<Dom<HTMLFormElement>>>; fn Name(&self) -> DOMString; fn SetName(&self, value: DOMString); fn Type(&self) -> DOMString; fn DefaultValue(&self) -> DOMString; fn SetDefaultValue(&self, value: DOMString); fn Value(&self) -> DOMString; fn SetValue(&self, value: DOMString); fn WillValidate(&self) -> bool; fn Validity(&self) -> Root<Dom<ValidityState>>; fn ValidationMessage(&self) -> DOMString; fn CheckValidity(&self) -> bool; fn ReportValidity(&self) -> bool; fn SetCustomValidity(&self, error: DOMString); fn Labels(&self) -> Root<Dom<NodeList>>;
}

Required Methods§

Implementors§