1 #![allow(unused_imports)] 2 use super::*; 3 use wasm_bindgen::prelude::*; 4 #[wasm_bindgen] 5 extern "C" { 6 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = CustomEventInit)] 7 #[derive(Debug, Clone, PartialEq, Eq)] 8 #[doc = "The `CustomEventInit` dictionary."] 9 #[doc = ""] 10 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] 11 pub type CustomEventInit; 12 } 13 impl CustomEventInit { 14 #[doc = "Construct a new `CustomEventInit`."] 15 #[doc = ""] 16 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] new() -> Self17 pub fn new() -> Self { 18 #[allow(unused_mut)] 19 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); 20 ret 21 } 22 #[doc = "Change the `bubbles` field of this object."] 23 #[doc = ""] 24 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] bubbles(&mut self, val: bool) -> &mut Self25 pub fn bubbles(&mut self, val: bool) -> &mut Self { 26 use wasm_bindgen::JsValue; 27 let r = ::js_sys::Reflect::set( 28 self.as_ref(), 29 &JsValue::from("bubbles"), 30 &JsValue::from(val), 31 ); 32 debug_assert!( 33 r.is_ok(), 34 "setting properties should never fail on our dictionary objects" 35 ); 36 let _ = r; 37 self 38 } 39 #[doc = "Change the `cancelable` field of this object."] 40 #[doc = ""] 41 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] cancelable(&mut self, val: bool) -> &mut Self42 pub fn cancelable(&mut self, val: bool) -> &mut Self { 43 use wasm_bindgen::JsValue; 44 let r = ::js_sys::Reflect::set( 45 self.as_ref(), 46 &JsValue::from("cancelable"), 47 &JsValue::from(val), 48 ); 49 debug_assert!( 50 r.is_ok(), 51 "setting properties should never fail on our dictionary objects" 52 ); 53 let _ = r; 54 self 55 } 56 #[doc = "Change the `composed` field of this object."] 57 #[doc = ""] 58 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] composed(&mut self, val: bool) -> &mut Self59 pub fn composed(&mut self, val: bool) -> &mut Self { 60 use wasm_bindgen::JsValue; 61 let r = ::js_sys::Reflect::set( 62 self.as_ref(), 63 &JsValue::from("composed"), 64 &JsValue::from(val), 65 ); 66 debug_assert!( 67 r.is_ok(), 68 "setting properties should never fail on our dictionary objects" 69 ); 70 let _ = r; 71 self 72 } 73 #[doc = "Change the `detail` field of this object."] 74 #[doc = ""] 75 #[doc = "*This API requires the following crate features to be activated: `CustomEventInit`*"] detail(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self76 pub fn detail(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self { 77 use wasm_bindgen::JsValue; 78 let r = 79 ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("detail"), &JsValue::from(val)); 80 debug_assert!( 81 r.is_ok(), 82 "setting properties should never fail on our dictionary objects" 83 ); 84 let _ = r; 85 self 86 } 87 } 88 impl Default for CustomEventInit { default() -> Self89 fn default() -> Self { 90 Self::new() 91 } 92 } 93