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 = SpeechSynthesisEventInit)]
7     #[derive(Debug, Clone, PartialEq, Eq)]
8     #[doc = "The `SpeechSynthesisEventInit` dictionary."]
9     #[doc = ""]
10     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
11     pub type SpeechSynthesisEventInit;
12 }
13 impl SpeechSynthesisEventInit {
14     #[cfg(feature = "SpeechSynthesisUtterance")]
15     #[doc = "Construct a new `SpeechSynthesisEventInit`."]
16     #[doc = ""]
17     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`, `SpeechSynthesisUtterance`*"]
new(utterance: &SpeechSynthesisUtterance) -> Self18     pub fn new(utterance: &SpeechSynthesisUtterance) -> Self {
19         #[allow(unused_mut)]
20         let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21         ret.utterance(utterance);
22         ret
23     }
24     #[doc = "Change the `bubbles` field of this object."]
25     #[doc = ""]
26     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
bubbles(&mut self, val: bool) -> &mut Self27     pub fn bubbles(&mut self, val: bool) -> &mut Self {
28         use wasm_bindgen::JsValue;
29         let r = ::js_sys::Reflect::set(
30             self.as_ref(),
31             &JsValue::from("bubbles"),
32             &JsValue::from(val),
33         );
34         debug_assert!(
35             r.is_ok(),
36             "setting properties should never fail on our dictionary objects"
37         );
38         let _ = r;
39         self
40     }
41     #[doc = "Change the `cancelable` field of this object."]
42     #[doc = ""]
43     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
cancelable(&mut self, val: bool) -> &mut Self44     pub fn cancelable(&mut self, val: bool) -> &mut Self {
45         use wasm_bindgen::JsValue;
46         let r = ::js_sys::Reflect::set(
47             self.as_ref(),
48             &JsValue::from("cancelable"),
49             &JsValue::from(val),
50         );
51         debug_assert!(
52             r.is_ok(),
53             "setting properties should never fail on our dictionary objects"
54         );
55         let _ = r;
56         self
57     }
58     #[doc = "Change the `composed` field of this object."]
59     #[doc = ""]
60     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
composed(&mut self, val: bool) -> &mut Self61     pub fn composed(&mut self, val: bool) -> &mut Self {
62         use wasm_bindgen::JsValue;
63         let r = ::js_sys::Reflect::set(
64             self.as_ref(),
65             &JsValue::from("composed"),
66             &JsValue::from(val),
67         );
68         debug_assert!(
69             r.is_ok(),
70             "setting properties should never fail on our dictionary objects"
71         );
72         let _ = r;
73         self
74     }
75     #[doc = "Change the `charIndex` field of this object."]
76     #[doc = ""]
77     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
char_index(&mut self, val: u32) -> &mut Self78     pub fn char_index(&mut self, val: u32) -> &mut Self {
79         use wasm_bindgen::JsValue;
80         let r = ::js_sys::Reflect::set(
81             self.as_ref(),
82             &JsValue::from("charIndex"),
83             &JsValue::from(val),
84         );
85         debug_assert!(
86             r.is_ok(),
87             "setting properties should never fail on our dictionary objects"
88         );
89         let _ = r;
90         self
91     }
92     #[doc = "Change the `charLength` field of this object."]
93     #[doc = ""]
94     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
char_length(&mut self, val: Option<u32>) -> &mut Self95     pub fn char_length(&mut self, val: Option<u32>) -> &mut Self {
96         use wasm_bindgen::JsValue;
97         let r = ::js_sys::Reflect::set(
98             self.as_ref(),
99             &JsValue::from("charLength"),
100             &JsValue::from(val),
101         );
102         debug_assert!(
103             r.is_ok(),
104             "setting properties should never fail on our dictionary objects"
105         );
106         let _ = r;
107         self
108     }
109     #[doc = "Change the `elapsedTime` field of this object."]
110     #[doc = ""]
111     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
elapsed_time(&mut self, val: f32) -> &mut Self112     pub fn elapsed_time(&mut self, val: f32) -> &mut Self {
113         use wasm_bindgen::JsValue;
114         let r = ::js_sys::Reflect::set(
115             self.as_ref(),
116             &JsValue::from("elapsedTime"),
117             &JsValue::from(val),
118         );
119         debug_assert!(
120             r.is_ok(),
121             "setting properties should never fail on our dictionary objects"
122         );
123         let _ = r;
124         self
125     }
126     #[doc = "Change the `name` field of this object."]
127     #[doc = ""]
128     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`*"]
name(&mut self, val: &str) -> &mut Self129     pub fn name(&mut self, val: &str) -> &mut Self {
130         use wasm_bindgen::JsValue;
131         let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("name"), &JsValue::from(val));
132         debug_assert!(
133             r.is_ok(),
134             "setting properties should never fail on our dictionary objects"
135         );
136         let _ = r;
137         self
138     }
139     #[cfg(feature = "SpeechSynthesisUtterance")]
140     #[doc = "Change the `utterance` field of this object."]
141     #[doc = ""]
142     #[doc = "*This API requires the following crate features to be activated: `SpeechSynthesisEventInit`, `SpeechSynthesisUtterance`*"]
utterance(&mut self, val: &SpeechSynthesisUtterance) -> &mut Self143     pub fn utterance(&mut self, val: &SpeechSynthesisUtterance) -> &mut Self {
144         use wasm_bindgen::JsValue;
145         let r = ::js_sys::Reflect::set(
146             self.as_ref(),
147             &JsValue::from("utterance"),
148             &JsValue::from(val),
149         );
150         debug_assert!(
151             r.is_ok(),
152             "setting properties should never fail on our dictionary objects"
153         );
154         let _ = r;
155         self
156     }
157 }
158