summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_WorkerNavigator.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/web-sys/src/features/gen_WorkerNavigator.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/web-sys/src/features/gen_WorkerNavigator.rs')
-rw-r--r--vendor/web-sys/src/features/gen_WorkerNavigator.rs151
1 files changed, 151 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_WorkerNavigator.rs b/vendor/web-sys/src/features/gen_WorkerNavigator.rs
new file mode 100644
index 000000000..b0eb70305
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_WorkerNavigator.rs
@@ -0,0 +1,151 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = WorkerNavigator , typescript_type = "WorkerNavigator")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `WorkerNavigator` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub type WorkerNavigator;
+ #[cfg(feature = "NetworkInformation")]
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "WorkerNavigator" , js_name = connection)]
+ #[doc = "Getter for the `connection` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/connection)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NetworkInformation`, `WorkerNavigator`*"]
+ pub fn connection(this: &WorkerNavigator) -> Result<NetworkInformation, JsValue>;
+ #[cfg(feature = "MediaCapabilities")]
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = mediaCapabilities)]
+ #[doc = "Getter for the `mediaCapabilities` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/mediaCapabilities)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MediaCapabilities`, `WorkerNavigator`*"]
+ pub fn media_capabilities(this: &WorkerNavigator) -> MediaCapabilities;
+ #[cfg(web_sys_unstable_apis)]
+ #[cfg(feature = "Serial")]
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = serial)]
+ #[doc = "Getter for the `serial` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/serial)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `Serial`, `WorkerNavigator`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn serial(this: &WorkerNavigator) -> Serial;
+ #[cfg(web_sys_unstable_apis)]
+ #[cfg(feature = "Usb")]
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = usb)]
+ #[doc = "Getter for the `usb` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/usb)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `Usb`, `WorkerNavigator`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn usb(this: &WorkerNavigator) -> Usb;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = hardwareConcurrency)]
+ #[doc = "Getter for the `hardwareConcurrency` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/hardwareConcurrency)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn hardware_concurrency(this: &WorkerNavigator) -> f64;
+ #[cfg(web_sys_unstable_apis)]
+ #[cfg(feature = "Gpu")]
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = gpu)]
+ #[doc = "Getter for the `gpu` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/gpu)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `Gpu`, `WorkerNavigator`*"]
+ #[doc = ""]
+ #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"]
+ #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"]
+ pub fn gpu(this: &WorkerNavigator) -> Gpu;
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "WorkerNavigator" , js_name = appCodeName)]
+ #[doc = "Getter for the `appCodeName` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/appCodeName)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn app_code_name(this: &WorkerNavigator) -> Result<String, JsValue>;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = appName)]
+ #[doc = "Getter for the `appName` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/appName)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn app_name(this: &WorkerNavigator) -> String;
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "WorkerNavigator" , js_name = appVersion)]
+ #[doc = "Getter for the `appVersion` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/appVersion)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn app_version(this: &WorkerNavigator) -> Result<String, JsValue>;
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "WorkerNavigator" , js_name = platform)]
+ #[doc = "Getter for the `platform` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/platform)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn platform(this: &WorkerNavigator) -> Result<String, JsValue>;
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "WorkerNavigator" , js_name = userAgent)]
+ #[doc = "Getter for the `userAgent` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/userAgent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn user_agent(this: &WorkerNavigator) -> Result<String, JsValue>;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = product)]
+ #[doc = "Getter for the `product` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/product)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn product(this: &WorkerNavigator) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = language)]
+ #[doc = "Getter for the `language` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/language)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn language(this: &WorkerNavigator) -> Option<String>;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = languages)]
+ #[doc = "Getter for the `languages` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/languages)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn languages(this: &WorkerNavigator) -> ::js_sys::Array;
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = onLine)]
+ #[doc = "Getter for the `onLine` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/onLine)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn on_line(this: &WorkerNavigator) -> bool;
+ #[cfg(feature = "StorageManager")]
+ # [wasm_bindgen (structural , method , getter , js_class = "WorkerNavigator" , js_name = storage)]
+ #[doc = "Getter for the `storage` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/storage)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `StorageManager`, `WorkerNavigator`*"]
+ pub fn storage(this: &WorkerNavigator) -> StorageManager;
+ # [wasm_bindgen (method , structural , js_class = "WorkerNavigator" , js_name = taintEnabled)]
+ #[doc = "The `taintEnabled()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WorkerNavigator/taintEnabled)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `WorkerNavigator`*"]
+ pub fn taint_enabled(this: &WorkerNavigator) -> bool;
+}