summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_ServiceWorkerRegistration.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_ServiceWorkerRegistration.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_ServiceWorkerRegistration.rs')
-rw-r--r--vendor/web-sys/src/features/gen_ServiceWorkerRegistration.rs133
1 files changed, 133 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_ServiceWorkerRegistration.rs b/vendor/web-sys/src/features/gen_ServiceWorkerRegistration.rs
new file mode 100644
index 000000000..06155365c
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_ServiceWorkerRegistration.rs
@@ -0,0 +1,133 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = EventTarget , extends = :: js_sys :: Object , js_name = ServiceWorkerRegistration , typescript_type = "ServiceWorkerRegistration")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `ServiceWorkerRegistration` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub type ServiceWorkerRegistration;
+ #[cfg(feature = "ServiceWorker")]
+ # [wasm_bindgen (structural , method , getter , js_class = "ServiceWorkerRegistration" , js_name = installing)]
+ #[doc = "Getter for the `installing` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/installing)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorker`, `ServiceWorkerRegistration`*"]
+ pub fn installing(this: &ServiceWorkerRegistration) -> Option<ServiceWorker>;
+ #[cfg(feature = "ServiceWorker")]
+ # [wasm_bindgen (structural , method , getter , js_class = "ServiceWorkerRegistration" , js_name = waiting)]
+ #[doc = "Getter for the `waiting` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/waiting)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorker`, `ServiceWorkerRegistration`*"]
+ pub fn waiting(this: &ServiceWorkerRegistration) -> Option<ServiceWorker>;
+ #[cfg(feature = "ServiceWorker")]
+ # [wasm_bindgen (structural , method , getter , js_class = "ServiceWorkerRegistration" , js_name = active)]
+ #[doc = "Getter for the `active` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/active)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorker`, `ServiceWorkerRegistration`*"]
+ pub fn active(this: &ServiceWorkerRegistration) -> Option<ServiceWorker>;
+ # [wasm_bindgen (structural , method , getter , js_class = "ServiceWorkerRegistration" , js_name = scope)]
+ #[doc = "Getter for the `scope` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/scope)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn scope(this: &ServiceWorkerRegistration) -> String;
+ #[cfg(feature = "ServiceWorkerUpdateViaCache")]
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "ServiceWorkerRegistration" , js_name = updateViaCache)]
+ #[doc = "Getter for the `updateViaCache` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/updateViaCache)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`, `ServiceWorkerUpdateViaCache`*"]
+ pub fn update_via_cache(
+ this: &ServiceWorkerRegistration,
+ ) -> Result<ServiceWorkerUpdateViaCache, JsValue>;
+ # [wasm_bindgen (structural , method , getter , js_class = "ServiceWorkerRegistration" , js_name = onupdatefound)]
+ #[doc = "Getter for the `onupdatefound` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/onupdatefound)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn onupdatefound(this: &ServiceWorkerRegistration) -> Option<::js_sys::Function>;
+ # [wasm_bindgen (structural , method , setter , js_class = "ServiceWorkerRegistration" , js_name = onupdatefound)]
+ #[doc = "Setter for the `onupdatefound` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/onupdatefound)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn set_onupdatefound(this: &ServiceWorkerRegistration, value: Option<&::js_sys::Function>);
+ #[cfg(feature = "PushManager")]
+ # [wasm_bindgen (structural , catch , method , getter , js_class = "ServiceWorkerRegistration" , js_name = pushManager)]
+ #[doc = "Getter for the `pushManager` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/pushManager)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `PushManager`, `ServiceWorkerRegistration`*"]
+ pub fn push_manager(this: &ServiceWorkerRegistration) -> Result<PushManager, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = getNotifications)]
+ #[doc = "The `getNotifications()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/getNotifications)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn get_notifications(
+ this: &ServiceWorkerRegistration,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ #[cfg(feature = "GetNotificationOptions")]
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = getNotifications)]
+ #[doc = "The `getNotifications()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/getNotifications)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `GetNotificationOptions`, `ServiceWorkerRegistration`*"]
+ pub fn get_notifications_with_filter(
+ this: &ServiceWorkerRegistration,
+ filter: &GetNotificationOptions,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = showNotification)]
+ #[doc = "The `showNotification()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/showNotification)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn show_notification(
+ this: &ServiceWorkerRegistration,
+ title: &str,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ #[cfg(feature = "NotificationOptions")]
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = showNotification)]
+ #[doc = "The `showNotification()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/showNotification)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `NotificationOptions`, `ServiceWorkerRegistration`*"]
+ pub fn show_notification_with_options(
+ this: &ServiceWorkerRegistration,
+ title: &str,
+ options: &NotificationOptions,
+ ) -> Result<::js_sys::Promise, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = unregister)]
+ #[doc = "The `unregister()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/unregister)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn unregister(this: &ServiceWorkerRegistration) -> Result<::js_sys::Promise, JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "ServiceWorkerRegistration" , js_name = update)]
+ #[doc = "The `update()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/update)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ServiceWorkerRegistration`*"]
+ pub fn update(this: &ServiceWorkerRegistration) -> Result<::js_sys::Promise, JsValue>;
+}