Skip to main content

web_sys/features/
gen_HtmlOptGroupElement.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[wasm_bindgen]
6extern "C" {
7    #[wasm_bindgen(
8        extends = "HtmlElement",
9        extends = "Element",
10        extends = "Node",
11        extends = "EventTarget",
12        extends = "::js_sys::Object",
13        js_name = "HTMLOptGroupElement",
14        typescript_type = "HTMLOptGroupElement"
15    )]
16    #[derive(Debug, Clone, PartialEq, Eq)]
17    #[doc = "The `HtmlOptGroupElement` class."]
18    #[doc = ""]
19    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement)"]
20    #[doc = ""]
21    #[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
22    pub type HtmlOptGroupElement;
23    #[wasm_bindgen(method, getter, js_class = "HTMLOptGroupElement", js_name = "disabled")]
24    #[doc = "Getter for the `disabled` field of this object."]
25    #[doc = ""]
26    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
27    #[doc = ""]
28    #[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
29    pub fn disabled(this: &HtmlOptGroupElement) -> bool;
30    #[wasm_bindgen(method, setter, js_class = "HTMLOptGroupElement", js_name = "disabled")]
31    #[doc = "Setter for the `disabled` field of this object."]
32    #[doc = ""]
33    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
34    #[doc = ""]
35    #[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
36    pub fn set_disabled(this: &HtmlOptGroupElement, value: bool);
37    #[wasm_bindgen(method, getter, js_class = "HTMLOptGroupElement", js_name = "label")]
38    #[doc = "Getter for the `label` field of this object."]
39    #[doc = ""]
40    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
41    #[doc = ""]
42    #[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
43    pub fn label(this: &HtmlOptGroupElement) -> ::alloc::string::String;
44    #[wasm_bindgen(method, setter, js_class = "HTMLOptGroupElement", js_name = "label")]
45    #[doc = "Setter for the `label` field of this object."]
46    #[doc = ""]
47    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
48    #[doc = ""]
49    #[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
50    pub fn set_label(this: &HtmlOptGroupElement, value: &str);
51}