1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#![allow(unused_imports)]
#![allow(clippy::all)]
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;
}