summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_CompositionEventInit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_CompositionEventInit.rs')
-rw-r--r--vendor/web-sys/src/features/gen_CompositionEventInit.rs119
1 files changed, 119 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_CompositionEventInit.rs b/vendor/web-sys/src/features/gen_CompositionEventInit.rs
new file mode 100644
index 000000000..2c45e5fb5
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_CompositionEventInit.rs
@@ -0,0 +1,119 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = CompositionEventInit)]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `CompositionEventInit` dictionary."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub type CompositionEventInit;
+}
+impl CompositionEventInit {
+ #[doc = "Construct a new `CompositionEventInit`."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn new() -> Self {
+ #[allow(unused_mut)]
+ let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
+ ret
+ }
+ #[doc = "Change the `bubbles` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn bubbles(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("bubbles"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `cancelable` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn cancelable(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("cancelable"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `composed` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn composed(&mut self, val: bool) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(
+ self.as_ref(),
+ &JsValue::from("composed"),
+ &JsValue::from(val),
+ );
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `detail` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn detail(&mut self, val: i32) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r =
+ ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("detail"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[cfg(feature = "Window")]
+ #[doc = "Change the `view` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`, `Window`*"]
+ pub fn view(&mut self, val: Option<&Window>) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("view"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `data` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CompositionEventInit`*"]
+ pub fn data(&mut self, val: &str) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("data"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+}
+impl Default for CompositionEventInit {
+ fn default() -> Self {
+ Self::new()
+ }
+}