web_sys/features/
gen_PluginCrashedEventInit.rs

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
176
177
178
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = PluginCrashedEventInit)]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `PluginCrashedEventInit` dictionary."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    pub type PluginCrashedEventInit;
    #[doc = "Get the `bubbles` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "bubbles")]
    pub fn get_bubbles(this: &PluginCrashedEventInit) -> Option<bool>;
    #[doc = "Change the `bubbles` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "bubbles")]
    pub fn set_bubbles(this: &PluginCrashedEventInit, val: bool);
    #[doc = "Get the `cancelable` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "cancelable")]
    pub fn get_cancelable(this: &PluginCrashedEventInit) -> Option<bool>;
    #[doc = "Change the `cancelable` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "cancelable")]
    pub fn set_cancelable(this: &PluginCrashedEventInit, val: bool);
    #[doc = "Get the `composed` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "composed")]
    pub fn get_composed(this: &PluginCrashedEventInit) -> Option<bool>;
    #[doc = "Change the `composed` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "composed")]
    pub fn set_composed(this: &PluginCrashedEventInit, val: bool);
    #[doc = "Get the `browserDumpID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "browserDumpID")]
    pub fn get_browser_dump_id(this: &PluginCrashedEventInit) -> Option<String>;
    #[doc = "Change the `browserDumpID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "browserDumpID")]
    pub fn set_browser_dump_id(this: &PluginCrashedEventInit, val: Option<&str>);
    #[doc = "Get the `gmpPlugin` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "gmpPlugin")]
    pub fn get_gmp_plugin(this: &PluginCrashedEventInit) -> Option<bool>;
    #[doc = "Change the `gmpPlugin` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "gmpPlugin")]
    pub fn set_gmp_plugin(this: &PluginCrashedEventInit, val: bool);
    #[doc = "Get the `pluginDumpID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "pluginDumpID")]
    pub fn get_plugin_dump_id(this: &PluginCrashedEventInit) -> Option<String>;
    #[doc = "Change the `pluginDumpID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "pluginDumpID")]
    pub fn set_plugin_dump_id(this: &PluginCrashedEventInit, val: &str);
    #[doc = "Get the `pluginFilename` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "pluginFilename")]
    pub fn get_plugin_filename(this: &PluginCrashedEventInit) -> Option<String>;
    #[doc = "Change the `pluginFilename` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "pluginFilename")]
    pub fn set_plugin_filename(this: &PluginCrashedEventInit, val: Option<&str>);
    #[doc = "Get the `pluginID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "pluginID")]
    pub fn get_plugin_id(this: &PluginCrashedEventInit) -> Option<u32>;
    #[doc = "Change the `pluginID` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "pluginID")]
    pub fn set_plugin_id(this: &PluginCrashedEventInit, val: u32);
    #[doc = "Get the `pluginName` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "pluginName")]
    pub fn get_plugin_name(this: &PluginCrashedEventInit) -> Option<String>;
    #[doc = "Change the `pluginName` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "pluginName")]
    pub fn set_plugin_name(this: &PluginCrashedEventInit, val: &str);
    #[doc = "Get the `submittedCrashReport` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, getter = "submittedCrashReport")]
    pub fn get_submitted_crash_report(this: &PluginCrashedEventInit) -> Option<bool>;
    #[doc = "Change the `submittedCrashReport` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    #[wasm_bindgen(method, setter = "submittedCrashReport")]
    pub fn set_submitted_crash_report(this: &PluginCrashedEventInit, val: bool);
}
impl PluginCrashedEventInit {
    #[doc = "Construct a new `PluginCrashedEventInit`."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PluginCrashedEventInit`*"]
    pub fn new() -> Self {
        #[allow(unused_mut)]
        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
        ret
    }
    #[deprecated = "Use `set_bubbles()` instead."]
    pub fn bubbles(&mut self, val: bool) -> &mut Self {
        self.set_bubbles(val);
        self
    }
    #[deprecated = "Use `set_cancelable()` instead."]
    pub fn cancelable(&mut self, val: bool) -> &mut Self {
        self.set_cancelable(val);
        self
    }
    #[deprecated = "Use `set_composed()` instead."]
    pub fn composed(&mut self, val: bool) -> &mut Self {
        self.set_composed(val);
        self
    }
    #[deprecated = "Use `set_browser_dump_id()` instead."]
    pub fn browser_dump_id(&mut self, val: Option<&str>) -> &mut Self {
        self.set_browser_dump_id(val);
        self
    }
    #[deprecated = "Use `set_gmp_plugin()` instead."]
    pub fn gmp_plugin(&mut self, val: bool) -> &mut Self {
        self.set_gmp_plugin(val);
        self
    }
    #[deprecated = "Use `set_plugin_dump_id()` instead."]
    pub fn plugin_dump_id(&mut self, val: &str) -> &mut Self {
        self.set_plugin_dump_id(val);
        self
    }
    #[deprecated = "Use `set_plugin_filename()` instead."]
    pub fn plugin_filename(&mut self, val: Option<&str>) -> &mut Self {
        self.set_plugin_filename(val);
        self
    }
    #[deprecated = "Use `set_plugin_id()` instead."]
    pub fn plugin_id(&mut self, val: u32) -> &mut Self {
        self.set_plugin_id(val);
        self
    }
    #[deprecated = "Use `set_plugin_name()` instead."]
    pub fn plugin_name(&mut self, val: &str) -> &mut Self {
        self.set_plugin_name(val);
        self
    }
    #[deprecated = "Use `set_submitted_crash_report()` instead."]
    pub fn submitted_crash_report(&mut self, val: bool) -> &mut Self {
        self.set_submitted_crash_report(val);
        self
    }
}
impl Default for PluginCrashedEventInit {
    fn default() -> Self {
        Self::new()
    }
}