pub trait HTMLOptGroupElementMethods<D: DomTypes> {
// Required methods
fn Disabled(&self) -> bool;
fn SetDisabled(&self, cx: &mut JSContext, value: bool);
fn Label(&self) -> DOMString;
fn SetLabel(&self, cx: &mut JSContext, value: DOMString);
}Required Methods§
fn Disabled(&self) -> bool
fn SetDisabled(&self, cx: &mut JSContext, value: bool)
fn Label(&self) -> DOMString
fn SetLabel(&self, cx: &mut JSContext, value: DOMString)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".