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:
28
zeroidc/vendor/web-sys/src/features/gen_HtmlTimeElement.rs
vendored
Normal file
28
zeroidc/vendor/web-sys/src/features/gen_HtmlTimeElement.rs
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
#![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 = HTMLTimeElement , typescript_type = "HTMLTimeElement")]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
#[doc = "The `HtmlTimeElement` class."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlTimeElement`*"]
|
||||
pub type HtmlTimeElement;
|
||||
# [wasm_bindgen (structural , method , getter , js_class = "HTMLTimeElement" , js_name = dateTime)]
|
||||
#[doc = "Getter for the `dateTime` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement/dateTime)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlTimeElement`*"]
|
||||
pub fn date_time(this: &HtmlTimeElement) -> String;
|
||||
# [wasm_bindgen (structural , method , setter , js_class = "HTMLTimeElement" , js_name = dateTime)]
|
||||
#[doc = "Setter for the `dateTime` field of this object."]
|
||||
#[doc = ""]
|
||||
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement/dateTime)"]
|
||||
#[doc = ""]
|
||||
#[doc = "*This API requires the following crate features to be activated: `HtmlTimeElement`*"]
|
||||
pub fn set_date_time(this: &HtmlTimeElement, value: &str);
|
||||
}
|
||||
Reference in New Issue
Block a user