#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[cfg(web_sys_unstable_apis)] #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = AudioDataInit)] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `AudioDataInit` dictionary."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] pub type AudioDataInit; #[cfg(web_sys_unstable_apis)] #[doc = "Get the `data` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "data")] pub fn get_data(this: &AudioDataInit) -> ::js_sys::Object; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `data` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "data")] pub fn set_data(this: &AudioDataInit, val: &::js_sys::Object); #[cfg(web_sys_unstable_apis)] #[cfg(feature = "AudioSampleFormat")] #[doc = "Get the `format` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`, `AudioSampleFormat`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "format")] pub fn get_format(this: &AudioDataInit) -> AudioSampleFormat; #[cfg(web_sys_unstable_apis)] #[cfg(feature = "AudioSampleFormat")] #[doc = "Change the `format` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`, `AudioSampleFormat`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "format")] pub fn set_format(this: &AudioDataInit, val: AudioSampleFormat); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `numberOfChannels` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "numberOfChannels")] pub fn get_number_of_channels(this: &AudioDataInit) -> u32; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `numberOfChannels` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "numberOfChannels")] pub fn set_number_of_channels(this: &AudioDataInit, val: u32); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `numberOfFrames` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "numberOfFrames")] pub fn get_number_of_frames(this: &AudioDataInit) -> u32; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `numberOfFrames` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "numberOfFrames")] pub fn set_number_of_frames(this: &AudioDataInit, val: u32); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `sampleRate` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "sampleRate")] pub fn get_sample_rate(this: &AudioDataInit) -> f32; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `sampleRate` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "sampleRate")] pub fn set_sample_rate(this: &AudioDataInit, val: f32); #[cfg(web_sys_unstable_apis)] #[doc = "Get the `timestamp` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, getter = "timestamp")] pub fn get_timestamp(this: &AudioDataInit) -> f64; #[cfg(web_sys_unstable_apis)] #[doc = "Change the `timestamp` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] #[wasm_bindgen(method, setter = "timestamp")] pub fn set_timestamp(this: &AudioDataInit, val: f64); } #[cfg(web_sys_unstable_apis)] impl AudioDataInit { #[cfg(feature = "AudioSampleFormat")] #[doc = "Construct a new `AudioDataInit`."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `AudioDataInit`, `AudioSampleFormat`*"] #[doc = ""] #[doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as"] #[doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*"] pub fn new( data: &::js_sys::Object, format: AudioSampleFormat, number_of_channels: u32, number_of_frames: u32, sample_rate: f32, timestamp: f64, ) -> Self { #[allow(unused_mut)] let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); ret.set_data(data); ret.set_format(format); ret.set_number_of_channels(number_of_channels); ret.set_number_of_frames(number_of_frames); ret.set_sample_rate(sample_rate); ret.set_timestamp(timestamp); ret } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_data()` instead."] pub fn data(&mut self, val: &::js_sys::Object) -> &mut Self { self.set_data(val); self } #[cfg(web_sys_unstable_apis)] #[cfg(feature = "AudioSampleFormat")] #[deprecated = "Use `set_format()` instead."] pub fn format(&mut self, val: AudioSampleFormat) -> &mut Self { self.set_format(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_number_of_channels()` instead."] pub fn number_of_channels(&mut self, val: u32) -> &mut Self { self.set_number_of_channels(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_number_of_frames()` instead."] pub fn number_of_frames(&mut self, val: u32) -> &mut Self { self.set_number_of_frames(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_sample_rate()` instead."] pub fn sample_rate(&mut self, val: f32) -> &mut Self { self.set_sample_rate(val); self } #[cfg(web_sys_unstable_apis)] #[deprecated = "Use `set_timestamp()` instead."] pub fn timestamp(&mut self, val: f64) -> &mut Self { self.set_timestamp(val); self } }