This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/web-sys/src/features/gen_HtmlTimeElement.rs

29 lines
1.6 KiB
Rust
Raw Normal View History

#![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);
}