RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system.
This commit is contained in:
42
zeroidc/vendor/web-sys/src/features/gen_HtmlOptGroupElement.rs
vendored
Normal file
42
zeroidc/vendor/web-sys/src/features/gen_HtmlOptGroupElement.rs
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
#![allow(unused_imports)]
|
||||
use super::*;
|
||||
use wasm_bindgen::prelude::*;
|
||||
#[wasm_bindgen]
|
||||
extern "C" {
|
||||
# [wasm_bindgen (extends = HtmlElement , extends = Element , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = HTMLOptGroupElement , typescript_type = "HTMLOptGroupElement")]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
#[doc = "The `HtmlOptGroupElement` class."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
|
||||
pub type HtmlOptGroupElement;
|
||||
# [wasm_bindgen (structural , method , getter , js_class = "HTMLOptGroupElement" , js_name = disabled)]
|
||||
#[doc = "Getter for the `disabled` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
|
||||
pub fn disabled(this: &HtmlOptGroupElement) -> bool;
|
||||
# [wasm_bindgen (structural , method , setter , js_class = "HTMLOptGroupElement" , js_name = disabled)]
|
||||
#[doc = "Setter for the `disabled` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
|
||||
pub fn set_disabled(this: &HtmlOptGroupElement, value: bool);
|
||||
# [wasm_bindgen (structural , method , getter , js_class = "HTMLOptGroupElement" , js_name = label)]
|
||||
#[doc = "Getter for the `label` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
|
||||
pub fn label(this: &HtmlOptGroupElement) -> String;
|
||||
# [wasm_bindgen (structural , method , setter , js_class = "HTMLOptGroupElement" , js_name = label)]
|
||||
#[doc = "Setter for the `label` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
|
||||
pub fn set_label(this: &HtmlOptGroupElement, value: &str);
|
||||
}
|
||||
Reference in New Issue
Block a user