summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_MutationEvent.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_MutationEvent.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_MutationEvent.rs')
-rw-r--r--vendor/web-sys/src/features/gen_MutationEvent.rs174
1 files changed, 174 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_MutationEvent.rs b/vendor/web-sys/src/features/gen_MutationEvent.rs
new file mode 100644
index 000000000..72f7bc9ad
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_MutationEvent.rs
@@ -0,0 +1,174 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = MutationEvent , typescript_type = "MutationEvent")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `MutationEvent` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub type MutationEvent;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (structural , method , getter , js_class = "MutationEvent" , js_name = relatedNode)]
+ #[doc = "Getter for the `relatedNode` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/relatedNode)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn related_node(this: &MutationEvent) -> Option<Node>;
+ # [wasm_bindgen (structural , method , getter , js_class = "MutationEvent" , js_name = prevValue)]
+ #[doc = "Getter for the `prevValue` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/prevValue)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn prev_value(this: &MutationEvent) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "MutationEvent" , js_name = newValue)]
+ #[doc = "Getter for the `newValue` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/newValue)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn new_value(this: &MutationEvent) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "MutationEvent" , js_name = attrName)]
+ #[doc = "Getter for the `attrName` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/attrName)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn attr_name(this: &MutationEvent) -> String;
+ # [wasm_bindgen (structural , method , getter , js_class = "MutationEvent" , js_name = attrChange)]
+ #[doc = "Getter for the `attrChange` field of this object."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/attrChange)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn attr_change(this: &MutationEvent) -> u16;
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn init_mutation_event(this: &MutationEvent, type_: &str) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn init_mutation_event_with_can_bubble(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ ) -> Result<(), JsValue>;
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ ) -> Result<(), JsValue>;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable_and_related_node(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ related_node: Option<&Node>,
+ ) -> Result<(), JsValue>;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable_and_related_node_and_prev_value(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ related_node: Option<&Node>,
+ prev_value: &str,
+ ) -> Result<(), JsValue>;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable_and_related_node_and_prev_value_and_new_value(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ related_node: Option<&Node>,
+ prev_value: &str,
+ new_value: &str,
+ ) -> Result<(), JsValue>;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable_and_related_node_and_prev_value_and_new_value_and_attr_name(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ related_node: Option<&Node>,
+ prev_value: &str,
+ new_value: &str,
+ attr_name: &str,
+ ) -> Result<(), JsValue>;
+ #[cfg(feature = "Node")]
+ # [wasm_bindgen (catch , method , structural , js_class = "MutationEvent" , js_name = initMutationEvent)]
+ #[doc = "The `initMutationEvent()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/MutationEvent/initMutationEvent)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`, `Node`*"]
+ pub fn init_mutation_event_with_can_bubble_and_cancelable_and_related_node_and_prev_value_and_new_value_and_attr_name_and_attr_change(
+ this: &MutationEvent,
+ type_: &str,
+ can_bubble: bool,
+ cancelable: bool,
+ related_node: Option<&Node>,
+ prev_value: &str,
+ new_value: &str,
+ attr_name: &str,
+ attr_change: u16,
+ ) -> Result<(), JsValue>;
+}
+impl MutationEvent {
+ #[doc = "The `MutationEvent.MODIFICATION` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub const MODIFICATION: u16 = 1u64 as u16;
+ #[doc = "The `MutationEvent.ADDITION` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub const ADDITION: u16 = 2u64 as u16;
+ #[doc = "The `MutationEvent.REMOVAL` const."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `MutationEvent`*"]
+ pub const REMOVAL: u16 = 3u64 as u16;
+}