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 = MediaElementAudioSourceOptions)]
7     #[derive(Debug, Clone, PartialEq, Eq)]
8     #[doc = "The `MediaElementAudioSourceOptions` dictionary."]
9     #[doc = ""]
10     #[doc = "*This API requires the following crate features to be activated: `MediaElementAudioSourceOptions`*"]
11     pub type MediaElementAudioSourceOptions;
12 }
13 impl MediaElementAudioSourceOptions {
14     #[cfg(feature = "HtmlMediaElement")]
15     #[doc = "Construct a new `MediaElementAudioSourceOptions`."]
16     #[doc = ""]
17     #[doc = "*This API requires the following crate features to be activated: `HtmlMediaElement`, `MediaElementAudioSourceOptions`*"]
new(media_element: &HtmlMediaElement) -> Self18     pub fn new(media_element: &HtmlMediaElement) -> Self {
19         #[allow(unused_mut)]
20         let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21         ret.media_element(media_element);
22         ret
23     }
24     #[cfg(feature = "HtmlMediaElement")]
25     #[doc = "Change the `mediaElement` field of this object."]
26     #[doc = ""]
27     #[doc = "*This API requires the following crate features to be activated: `HtmlMediaElement`, `MediaElementAudioSourceOptions`*"]
media_element(&mut self, val: &HtmlMediaElement) -> &mut Self28     pub fn media_element(&mut self, val: &HtmlMediaElement) -> &mut Self {
29         use wasm_bindgen::JsValue;
30         let r = ::js_sys::Reflect::set(
31             self.as_ref(),
32             &JsValue::from("mediaElement"),
33             &JsValue::from(val),
34         );
35         debug_assert!(
36             r.is_ok(),
37             "setting properties should never fail on our dictionary objects"
38         );
39         let _ = r;
40         self
41     }
42 }
43