summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_BroadcastChannel.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_BroadcastChannel.rs')
-rw-r--r--vendor/web-sys/src/features/gen_BroadcastChannel.rs73
1 files changed, 73 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_BroadcastChannel.rs b/vendor/web-sys/src/features/gen_BroadcastChannel.rs
new file mode 100644
index 000000000..1706b659e
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_BroadcastChannel.rs
@@ -0,0 +1,73 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = EventTarget , extends = :: js_sys :: Object , js_name = BroadcastChannel , typescript_type = "BroadcastChannel")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `BroadcastChannel` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub type BroadcastChannel;
+ # [wasm_bindgen (structural , method , getter , js_class = "BroadcastChannel" , js_name = name)]
+ #[doc = "Getter for the `name` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/name)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn name(this: &BroadcastChannel) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "BroadcastChannel" , js_name = onmessage)]
+ #[doc = "Getter for the `onmessage` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/onmessage)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn onmessage(this: &BroadcastChannel) -> Option<::js_sys::Function>;
+ # [wasm_bindgen (structural , method , setter , js_class = "BroadcastChannel" , js_name = onmessage)]
+ #[doc = "Setter for the `onmessage` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/onmessage)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn set_onmessage(this: &BroadcastChannel, value: Option<&::js_sys::Function>);
+ # [wasm_bindgen (structural , method , getter , js_class = "BroadcastChannel" , js_name = onmessageerror)]
+ #[doc = "Getter for the `onmessageerror` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/onmessageerror)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn onmessageerror(this: &BroadcastChannel) -> Option<::js_sys::Function>;
+ # [wasm_bindgen (structural , method , setter , js_class = "BroadcastChannel" , js_name = onmessageerror)]
+ #[doc = "Setter for the `onmessageerror` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/onmessageerror)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn set_onmessageerror(this: &BroadcastChannel, value: Option<&::js_sys::Function>);
+ #[wasm_bindgen(catch, constructor, js_class = "BroadcastChannel")]
+ #[doc = "The `new BroadcastChannel(..)` constructor, creating a new instance of `BroadcastChannel`."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/BroadcastChannel)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn new(channel: &str) -> Result<BroadcastChannel, JsValue>;
+ # [wasm_bindgen (method , structural , js_class = "BroadcastChannel" , js_name = close)]
+ #[doc = "The `close()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/close)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn close(this: &BroadcastChannel);
+ # [wasm_bindgen (catch , method , structural , js_class = "BroadcastChannel" , js_name = postMessage)]
+ #[doc = "The `postMessage()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/postMessage)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `BroadcastChannel`*"]
+ pub fn post_message(
+ this: &BroadcastChannel,
+ message: &::wasm_bindgen::JsValue,
+ ) -> Result<(), JsValue>;
+}