#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = ConvolverOptions)] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `ConvolverOptions` dictionary."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] pub type ConvolverOptions; #[doc = "Get the `channelCount` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] #[wasm_bindgen(method, getter = "channelCount")] pub fn get_channel_count(this: &ConvolverOptions) -> Option; #[doc = "Change the `channelCount` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] #[wasm_bindgen(method, setter = "channelCount")] pub fn set_channel_count(this: &ConvolverOptions, val: u32); #[cfg(feature = "ChannelCountMode")] #[doc = "Get the `channelCountMode` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ChannelCountMode`, `ConvolverOptions`*"] #[wasm_bindgen(method, getter = "channelCountMode")] pub fn get_channel_count_mode(this: &ConvolverOptions) -> Option; #[cfg(feature = "ChannelCountMode")] #[doc = "Change the `channelCountMode` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ChannelCountMode`, `ConvolverOptions`*"] #[wasm_bindgen(method, setter = "channelCountMode")] pub fn set_channel_count_mode(this: &ConvolverOptions, val: ChannelCountMode); #[cfg(feature = "ChannelInterpretation")] #[doc = "Get the `channelInterpretation` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ChannelInterpretation`, `ConvolverOptions`*"] #[wasm_bindgen(method, getter = "channelInterpretation")] pub fn get_channel_interpretation(this: &ConvolverOptions) -> Option; #[cfg(feature = "ChannelInterpretation")] #[doc = "Change the `channelInterpretation` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ChannelInterpretation`, `ConvolverOptions`*"] #[wasm_bindgen(method, setter = "channelInterpretation")] pub fn set_channel_interpretation(this: &ConvolverOptions, val: ChannelInterpretation); #[cfg(feature = "AudioBuffer")] #[doc = "Get the `buffer` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioBuffer`, `ConvolverOptions`*"] #[wasm_bindgen(method, getter = "buffer")] pub fn get_buffer(this: &ConvolverOptions) -> Option; #[cfg(feature = "AudioBuffer")] #[doc = "Change the `buffer` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioBuffer`, `ConvolverOptions`*"] #[wasm_bindgen(method, setter = "buffer")] pub fn set_buffer(this: &ConvolverOptions, val: Option<&AudioBuffer>); #[doc = "Get the `disableNormalization` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] #[wasm_bindgen(method, getter = "disableNormalization")] pub fn get_disable_normalization(this: &ConvolverOptions) -> Option; #[doc = "Change the `disableNormalization` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] #[wasm_bindgen(method, setter = "disableNormalization")] pub fn set_disable_normalization(this: &ConvolverOptions, val: bool); } impl ConvolverOptions { #[doc = "Construct a new `ConvolverOptions`."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ConvolverOptions`*"] pub fn new() -> Self { #[allow(unused_mut)] let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); ret } #[deprecated = "Use `set_channel_count()` instead."] pub fn channel_count(&mut self, val: u32) -> &mut Self { self.set_channel_count(val); self } #[cfg(feature = "ChannelCountMode")] #[deprecated = "Use `set_channel_count_mode()` instead."] pub fn channel_count_mode(&mut self, val: ChannelCountMode) -> &mut Self { self.set_channel_count_mode(val); self } #[cfg(feature = "ChannelInterpretation")] #[deprecated = "Use `set_channel_interpretation()` instead."] pub fn channel_interpretation(&mut self, val: ChannelInterpretation) -> &mut Self { self.set_channel_interpretation(val); self } #[cfg(feature = "AudioBuffer")] #[deprecated = "Use `set_buffer()` instead."] pub fn buffer(&mut self, val: Option<&AudioBuffer>) -> &mut Self { self.set_buffer(val); self } #[deprecated = "Use `set_disable_normalization()` instead."] pub fn disable_normalization(&mut self, val: bool) -> &mut Self { self.set_disable_normalization(val); self } } impl Default for ConvolverOptions { fn default() -> Self { Self::new() } }