[−][src]Struct web_sys::AudioContext
The AudioContext class.
This API requires the following crate features to be activated: AudioContext
Implementations
impl AudioContext[src]
pub fn destination(&self) -> AudioDestinationNode[src]
Getter for the destination field of this object.
This API requires the following crate features to be activated: AudioContext, AudioDestinationNode
impl AudioContext[src]
pub fn sample_rate(&self) -> f32[src]
Getter for the sampleRate field of this object.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn current_time(&self) -> f64[src]
Getter for the currentTime field of this object.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn listener(&self) -> AudioListener[src]
Getter for the listener field of this object.
This API requires the following crate features to be activated: AudioContext, AudioListener
impl AudioContext[src]
pub fn state(&self) -> AudioContextState[src]
Getter for the state field of this object.
This API requires the following crate features to be activated: AudioContext, AudioContextState
impl AudioContext[src]
pub fn audio_worklet(&self) -> Result<AudioWorklet, JsValue>[src]
Getter for the audioWorklet field of this object.
This API requires the following crate features to be activated: AudioContext, AudioWorklet
impl AudioContext[src]
pub fn onstatechange(&self) -> Option<Function>[src]
Getter for the onstatechange field of this object.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn set_onstatechange(&self, value: Option<&Function>)[src]
Setter for the onstatechange field of this object.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn new() -> Result<AudioContext, JsValue>[src]
The new AudioContext(..) constructor, creating a new instance of AudioContext.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn new_with_context_options(
context_options: &AudioContextOptions
) -> Result<AudioContext, JsValue>[src]
context_options: &AudioContextOptions
) -> Result<AudioContext, JsValue>
The new AudioContext(..) constructor, creating a new instance of AudioContext.
This API requires the following crate features to be activated: AudioContext, AudioContextOptions
impl AudioContext[src]
pub fn close(&self) -> Result<Promise, JsValue>[src]
The close() method.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn create_media_element_source(
&self,
media_element: &HtmlMediaElement
) -> Result<MediaElementAudioSourceNode, JsValue>[src]
&self,
media_element: &HtmlMediaElement
) -> Result<MediaElementAudioSourceNode, JsValue>
The createMediaElementSource() method.
This API requires the following crate features to be activated: AudioContext, HtmlMediaElement, MediaElementAudioSourceNode
impl AudioContext[src]
pub fn create_media_stream_destination(
&self
) -> Result<MediaStreamAudioDestinationNode, JsValue>[src]
&self
) -> Result<MediaStreamAudioDestinationNode, JsValue>
The createMediaStreamDestination() method.
This API requires the following crate features to be activated: AudioContext, MediaStreamAudioDestinationNode
impl AudioContext[src]
pub fn create_media_stream_source(
&self,
media_stream: &MediaStream
) -> Result<MediaStreamAudioSourceNode, JsValue>[src]
&self,
media_stream: &MediaStream
) -> Result<MediaStreamAudioSourceNode, JsValue>
The createMediaStreamSource() method.
This API requires the following crate features to be activated: AudioContext, MediaStream, MediaStreamAudioSourceNode
impl AudioContext[src]
pub fn suspend(&self) -> Result<Promise, JsValue>[src]
The suspend() method.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn create_analyser(&self) -> Result<AnalyserNode, JsValue>[src]
The createAnalyser() method.
This API requires the following crate features to be activated: AnalyserNode, AudioContext
impl AudioContext[src]
pub fn create_biquad_filter(&self) -> Result<BiquadFilterNode, JsValue>[src]
The createBiquadFilter() method.
This API requires the following crate features to be activated: AudioContext, BiquadFilterNode
impl AudioContext[src]
pub fn create_buffer(
&self,
number_of_channels: u32,
length: u32,
sample_rate: f32
) -> Result<AudioBuffer, JsValue>[src]
&self,
number_of_channels: u32,
length: u32,
sample_rate: f32
) -> Result<AudioBuffer, JsValue>
The createBuffer() method.
This API requires the following crate features to be activated: AudioBuffer, AudioContext
impl AudioContext[src]
pub fn create_buffer_source(&self) -> Result<AudioBufferSourceNode, JsValue>[src]
The createBufferSource() method.
This API requires the following crate features to be activated: AudioBufferSourceNode, AudioContext
impl AudioContext[src]
pub fn create_channel_merger(&self) -> Result<ChannelMergerNode, JsValue>[src]
The createChannelMerger() method.
This API requires the following crate features to be activated: AudioContext, ChannelMergerNode
impl AudioContext[src]
pub fn create_channel_merger_with_number_of_inputs(
&self,
number_of_inputs: u32
) -> Result<ChannelMergerNode, JsValue>[src]
&self,
number_of_inputs: u32
) -> Result<ChannelMergerNode, JsValue>
The createChannelMerger() method.
This API requires the following crate features to be activated: AudioContext, ChannelMergerNode
impl AudioContext[src]
pub fn create_channel_splitter(&self) -> Result<ChannelSplitterNode, JsValue>[src]
The createChannelSplitter() method.
This API requires the following crate features to be activated: AudioContext, ChannelSplitterNode
impl AudioContext[src]
pub fn create_channel_splitter_with_number_of_outputs(
&self,
number_of_outputs: u32
) -> Result<ChannelSplitterNode, JsValue>[src]
&self,
number_of_outputs: u32
) -> Result<ChannelSplitterNode, JsValue>
The createChannelSplitter() method.
This API requires the following crate features to be activated: AudioContext, ChannelSplitterNode
impl AudioContext[src]
pub fn create_constant_source(&self) -> Result<ConstantSourceNode, JsValue>[src]
The createConstantSource() method.
This API requires the following crate features to be activated: AudioContext, ConstantSourceNode
impl AudioContext[src]
pub fn create_convolver(&self) -> Result<ConvolverNode, JsValue>[src]
The createConvolver() method.
This API requires the following crate features to be activated: AudioContext, ConvolverNode
impl AudioContext[src]
pub fn create_delay(&self) -> Result<DelayNode, JsValue>[src]
The createDelay() method.
This API requires the following crate features to be activated: AudioContext, DelayNode
impl AudioContext[src]
pub fn create_delay_with_max_delay_time(
&self,
max_delay_time: f64
) -> Result<DelayNode, JsValue>[src]
&self,
max_delay_time: f64
) -> Result<DelayNode, JsValue>
The createDelay() method.
This API requires the following crate features to be activated: AudioContext, DelayNode
impl AudioContext[src]
pub fn create_dynamics_compressor(
&self
) -> Result<DynamicsCompressorNode, JsValue>[src]
&self
) -> Result<DynamicsCompressorNode, JsValue>
The createDynamicsCompressor() method.
This API requires the following crate features to be activated: AudioContext, DynamicsCompressorNode
impl AudioContext[src]
pub fn create_gain(&self) -> Result<GainNode, JsValue>[src]
The createGain() method.
This API requires the following crate features to be activated: AudioContext, GainNode
impl AudioContext[src]
pub fn create_iir_filter(
&self,
feedforward: &JsValue,
feedback: &JsValue
) -> Result<IirFilterNode, JsValue>[src]
&self,
feedforward: &JsValue,
feedback: &JsValue
) -> Result<IirFilterNode, JsValue>
The createIIRFilter() method.
This API requires the following crate features to be activated: AudioContext, IirFilterNode
impl AudioContext[src]
pub fn create_oscillator(&self) -> Result<OscillatorNode, JsValue>[src]
The createOscillator() method.
This API requires the following crate features to be activated: AudioContext, OscillatorNode
impl AudioContext[src]
pub fn create_panner(&self) -> Result<PannerNode, JsValue>[src]
The createPanner() method.
This API requires the following crate features to be activated: AudioContext, PannerNode
impl AudioContext[src]
pub fn create_periodic_wave(
&self,
real: &mut [f32],
imag: &mut [f32]
) -> Result<PeriodicWave, JsValue>[src]
&self,
real: &mut [f32],
imag: &mut [f32]
) -> Result<PeriodicWave, JsValue>
The createPeriodicWave() method.
This API requires the following crate features to be activated: AudioContext, PeriodicWave
impl AudioContext[src]
pub fn create_periodic_wave_with_constraints(
&self,
real: &mut [f32],
imag: &mut [f32],
constraints: &PeriodicWaveConstraints
) -> Result<PeriodicWave, JsValue>[src]
&self,
real: &mut [f32],
imag: &mut [f32],
constraints: &PeriodicWaveConstraints
) -> Result<PeriodicWave, JsValue>
The createPeriodicWave() method.
This API requires the following crate features to be activated: AudioContext, PeriodicWave, PeriodicWaveConstraints
impl AudioContext[src]
pub fn create_script_processor(&self) -> Result<ScriptProcessorNode, JsValue>[src]
The createScriptProcessor() method.
This API requires the following crate features to be activated: AudioContext, ScriptProcessorNode
impl AudioContext[src]
pub fn create_script_processor_with_buffer_size(
&self,
buffer_size: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32
) -> Result<ScriptProcessorNode, JsValue>
The createScriptProcessor() method.
This API requires the following crate features to be activated: AudioContext, ScriptProcessorNode
impl AudioContext[src]
pub fn create_script_processor_with_buffer_size_and_number_of_input_channels(
&self,
buffer_size: u32,
number_of_input_channels: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32,
number_of_input_channels: u32
) -> Result<ScriptProcessorNode, JsValue>
The createScriptProcessor() method.
This API requires the following crate features to be activated: AudioContext, ScriptProcessorNode
impl AudioContext[src]
pub fn create_script_processor_with_buffer_size_and_number_of_input_channels_and_number_of_output_channels(
&self,
buffer_size: u32,
number_of_input_channels: u32,
number_of_output_channels: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32,
number_of_input_channels: u32,
number_of_output_channels: u32
) -> Result<ScriptProcessorNode, JsValue>
The createScriptProcessor() method.
This API requires the following crate features to be activated: AudioContext, ScriptProcessorNode
impl AudioContext[src]
pub fn create_stereo_panner(&self) -> Result<StereoPannerNode, JsValue>[src]
The createStereoPanner() method.
This API requires the following crate features to be activated: AudioContext, StereoPannerNode
impl AudioContext[src]
pub fn create_wave_shaper(&self) -> Result<WaveShaperNode, JsValue>[src]
The createWaveShaper() method.
This API requires the following crate features to be activated: AudioContext, WaveShaperNode
impl AudioContext[src]
pub fn decode_audio_data(
&self,
audio_data: &ArrayBuffer
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer
) -> Result<Promise, JsValue>
The decodeAudioData() method.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn decode_audio_data_with_success_callback(
&self,
audio_data: &ArrayBuffer,
success_callback: &Function
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer,
success_callback: &Function
) -> Result<Promise, JsValue>
The decodeAudioData() method.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn decode_audio_data_with_success_callback_and_error_callback(
&self,
audio_data: &ArrayBuffer,
success_callback: &Function,
error_callback: &Function
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer,
success_callback: &Function,
error_callback: &Function
) -> Result<Promise, JsValue>
The decodeAudioData() method.
This API requires the following crate features to be activated: AudioContext
impl AudioContext[src]
pub fn resume(&self) -> Result<Promise, JsValue>[src]
The resume() method.
This API requires the following crate features to be activated: AudioContext
Methods from Deref<Target = BaseAudioContext>
pub fn destination(&self) -> AudioDestinationNode[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the destination field of this object.
This API requires the following crate features to be activated: AudioDestinationNode, BaseAudioContext
pub fn sample_rate(&self) -> f32[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the sampleRate field of this object.
This API requires the following crate features to be activated: BaseAudioContext
pub fn current_time(&self) -> f64[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the currentTime field of this object.
This API requires the following crate features to be activated: BaseAudioContext
pub fn listener(&self) -> AudioListener[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the listener field of this object.
This API requires the following crate features to be activated: AudioListener, BaseAudioContext
pub fn state(&self) -> AudioContextState[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the state field of this object.
This API requires the following crate features to be activated: AudioContextState, BaseAudioContext
pub fn audio_worklet(&self) -> Result<AudioWorklet, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the audioWorklet field of this object.
This API requires the following crate features to be activated: AudioWorklet, BaseAudioContext
pub fn onstatechange(&self) -> Option<Function>[src]
doesn't exist in Safari, use AudioContext instead now
Getter for the onstatechange field of this object.
This API requires the following crate features to be activated: BaseAudioContext
pub fn set_onstatechange(&self, value: Option<&Function>)[src]
doesn't exist in Safari, use AudioContext instead now
Setter for the onstatechange field of this object.
This API requires the following crate features to be activated: BaseAudioContext
pub fn create_analyser(&self) -> Result<AnalyserNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createAnalyser() method.
This API requires the following crate features to be activated: AnalyserNode, BaseAudioContext
pub fn create_biquad_filter(&self) -> Result<BiquadFilterNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createBiquadFilter() method.
This API requires the following crate features to be activated: BaseAudioContext, BiquadFilterNode
pub fn create_buffer(
&self,
number_of_channels: u32,
length: u32,
sample_rate: f32
) -> Result<AudioBuffer, JsValue>[src]
&self,
number_of_channels: u32,
length: u32,
sample_rate: f32
) -> Result<AudioBuffer, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createBuffer() method.
This API requires the following crate features to be activated: AudioBuffer, BaseAudioContext
pub fn create_buffer_source(&self) -> Result<AudioBufferSourceNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createBufferSource() method.
This API requires the following crate features to be activated: AudioBufferSourceNode, BaseAudioContext
pub fn create_channel_merger(&self) -> Result<ChannelMergerNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createChannelMerger() method.
This API requires the following crate features to be activated: BaseAudioContext, ChannelMergerNode
pub fn create_channel_merger_with_number_of_inputs(
&self,
number_of_inputs: u32
) -> Result<ChannelMergerNode, JsValue>[src]
&self,
number_of_inputs: u32
) -> Result<ChannelMergerNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createChannelMerger() method.
This API requires the following crate features to be activated: BaseAudioContext, ChannelMergerNode
pub fn create_channel_splitter(&self) -> Result<ChannelSplitterNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createChannelSplitter() method.
This API requires the following crate features to be activated: BaseAudioContext, ChannelSplitterNode
pub fn create_channel_splitter_with_number_of_outputs(
&self,
number_of_outputs: u32
) -> Result<ChannelSplitterNode, JsValue>[src]
&self,
number_of_outputs: u32
) -> Result<ChannelSplitterNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createChannelSplitter() method.
This API requires the following crate features to be activated: BaseAudioContext, ChannelSplitterNode
pub fn create_constant_source(&self) -> Result<ConstantSourceNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createConstantSource() method.
This API requires the following crate features to be activated: BaseAudioContext, ConstantSourceNode
pub fn create_convolver(&self) -> Result<ConvolverNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createConvolver() method.
This API requires the following crate features to be activated: BaseAudioContext, ConvolverNode
pub fn create_delay(&self) -> Result<DelayNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createDelay() method.
This API requires the following crate features to be activated: BaseAudioContext, DelayNode
pub fn create_delay_with_max_delay_time(
&self,
max_delay_time: f64
) -> Result<DelayNode, JsValue>[src]
&self,
max_delay_time: f64
) -> Result<DelayNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createDelay() method.
This API requires the following crate features to be activated: BaseAudioContext, DelayNode
pub fn create_dynamics_compressor(
&self
) -> Result<DynamicsCompressorNode, JsValue>[src]
&self
) -> Result<DynamicsCompressorNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createDynamicsCompressor() method.
This API requires the following crate features to be activated: BaseAudioContext, DynamicsCompressorNode
pub fn create_gain(&self) -> Result<GainNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createGain() method.
This API requires the following crate features to be activated: BaseAudioContext, GainNode
pub fn create_iir_filter(
&self,
feedforward: &JsValue,
feedback: &JsValue
) -> Result<IirFilterNode, JsValue>[src]
&self,
feedforward: &JsValue,
feedback: &JsValue
) -> Result<IirFilterNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createIIRFilter() method.
This API requires the following crate features to be activated: BaseAudioContext, IirFilterNode
pub fn create_oscillator(&self) -> Result<OscillatorNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createOscillator() method.
This API requires the following crate features to be activated: BaseAudioContext, OscillatorNode
pub fn create_panner(&self) -> Result<PannerNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createPanner() method.
This API requires the following crate features to be activated: BaseAudioContext, PannerNode
pub fn create_periodic_wave(
&self,
real: &mut [f32],
imag: &mut [f32]
) -> Result<PeriodicWave, JsValue>[src]
&self,
real: &mut [f32],
imag: &mut [f32]
) -> Result<PeriodicWave, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createPeriodicWave() method.
This API requires the following crate features to be activated: BaseAudioContext, PeriodicWave
pub fn create_periodic_wave_with_constraints(
&self,
real: &mut [f32],
imag: &mut [f32],
constraints: &PeriodicWaveConstraints
) -> Result<PeriodicWave, JsValue>[src]
&self,
real: &mut [f32],
imag: &mut [f32],
constraints: &PeriodicWaveConstraints
) -> Result<PeriodicWave, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createPeriodicWave() method.
This API requires the following crate features to be activated: BaseAudioContext, PeriodicWave, PeriodicWaveConstraints
pub fn create_script_processor(&self) -> Result<ScriptProcessorNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createScriptProcessor() method.
This API requires the following crate features to be activated: BaseAudioContext, ScriptProcessorNode
pub fn create_script_processor_with_buffer_size(
&self,
buffer_size: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32
) -> Result<ScriptProcessorNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createScriptProcessor() method.
This API requires the following crate features to be activated: BaseAudioContext, ScriptProcessorNode
pub fn create_script_processor_with_buffer_size_and_number_of_input_channels(
&self,
buffer_size: u32,
number_of_input_channels: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32,
number_of_input_channels: u32
) -> Result<ScriptProcessorNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createScriptProcessor() method.
This API requires the following crate features to be activated: BaseAudioContext, ScriptProcessorNode
pub fn create_script_processor_with_buffer_size_and_number_of_input_channels_and_number_of_output_channels(
&self,
buffer_size: u32,
number_of_input_channels: u32,
number_of_output_channels: u32
) -> Result<ScriptProcessorNode, JsValue>[src]
&self,
buffer_size: u32,
number_of_input_channels: u32,
number_of_output_channels: u32
) -> Result<ScriptProcessorNode, JsValue>
doesn't exist in Safari, use AudioContext instead now
The createScriptProcessor() method.
This API requires the following crate features to be activated: BaseAudioContext, ScriptProcessorNode
pub fn create_stereo_panner(&self) -> Result<StereoPannerNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createStereoPanner() method.
This API requires the following crate features to be activated: BaseAudioContext, StereoPannerNode
pub fn create_wave_shaper(&self) -> Result<WaveShaperNode, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The createWaveShaper() method.
This API requires the following crate features to be activated: BaseAudioContext, WaveShaperNode
pub fn decode_audio_data(
&self,
audio_data: &ArrayBuffer
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer
) -> Result<Promise, JsValue>
doesn't exist in Safari, use AudioContext instead now
The decodeAudioData() method.
This API requires the following crate features to be activated: BaseAudioContext
pub fn decode_audio_data_with_success_callback(
&self,
audio_data: &ArrayBuffer,
success_callback: &Function
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer,
success_callback: &Function
) -> Result<Promise, JsValue>
doesn't exist in Safari, use AudioContext instead now
The decodeAudioData() method.
This API requires the following crate features to be activated: BaseAudioContext
pub fn decode_audio_data_with_success_callback_and_error_callback(
&self,
audio_data: &ArrayBuffer,
success_callback: &Function,
error_callback: &Function
) -> Result<Promise, JsValue>[src]
&self,
audio_data: &ArrayBuffer,
success_callback: &Function,
error_callback: &Function
) -> Result<Promise, JsValue>
doesn't exist in Safari, use AudioContext instead now
The decodeAudioData() method.
This API requires the following crate features to be activated: BaseAudioContext
pub fn resume(&self) -> Result<Promise, JsValue>[src]
doesn't exist in Safari, use AudioContext instead now
The resume() method.
This API requires the following crate features to be activated: BaseAudioContext
Trait Implementations
impl AsRef<AudioContext> for AudioContext[src]
fn as_ref(&self) -> &AudioContext[src]
impl AsRef<BaseAudioContext> for AudioContext[src]
fn as_ref(&self) -> &BaseAudioContext[src]
impl AsRef<EventTarget> for AudioContext[src]
fn as_ref(&self) -> &EventTarget[src]
impl AsRef<JsValue> for AudioContext[src]
impl AsRef<Object> for AudioContext[src]
impl Clone for AudioContext[src]
fn clone(&self) -> AudioContext[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for AudioContext[src]
impl Deref for AudioContext[src]
type Target = BaseAudioContext
The resulting type after dereferencing.
fn deref(&self) -> &BaseAudioContext[src]
impl Eq for AudioContext[src]
impl From<AudioContext> for JsValue[src]
fn from(obj: AudioContext) -> JsValue[src]
impl From<AudioContext> for BaseAudioContext[src]
fn from(obj: AudioContext) -> BaseAudioContext[src]
impl From<AudioContext> for EventTarget[src]
fn from(obj: AudioContext) -> EventTarget[src]
impl From<AudioContext> for Object[src]
fn from(obj: AudioContext) -> Object[src]
impl From<JsValue> for AudioContext[src]
fn from(obj: JsValue) -> AudioContext[src]
impl FromWasmAbi for AudioContext[src]
type Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more
unsafe fn from_abi(js: Self::Abi) -> Self[src]
impl IntoWasmAbi for AudioContext[src]
type Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self) -> Self::Abi[src]
impl<'a> IntoWasmAbi for &'a AudioContext[src]
type Abi = <&'a JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self) -> Self::Abi[src]
impl JsCast for AudioContext[src]
fn instanceof(val: &JsValue) -> bool[src]
fn unchecked_from_js(val: JsValue) -> Self[src]
fn unchecked_from_js_ref(val: &JsValue) -> &Self[src]
fn has_type<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self> where
T: JsCast, [src]
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T> where
T: JsCast, [src]
T: JsCast,
fn unchecked_into<T>(self) -> T where
T: JsCast, [src]
T: JsCast,
fn unchecked_ref<T>(&self) -> &T where
T: JsCast, [src]
T: JsCast,
fn is_instance_of<T>(&self) -> bool where
T: JsCast, [src]
T: JsCast,
fn is_type_of(val: &JsValue) -> bool[src]
impl OptionFromWasmAbi for AudioContext[src]
impl OptionIntoWasmAbi for AudioContext[src]
impl<'a> OptionIntoWasmAbi for &'a AudioContext[src]
impl PartialEq<AudioContext> for AudioContext[src]
fn eq(&self, other: &AudioContext) -> bool[src]
fn ne(&self, other: &AudioContext) -> bool[src]
impl RefFromWasmAbi for AudioContext[src]
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self are recovered from.
type Anchor = ManuallyDrop<AudioContext>
The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor[src]
impl StructuralEq for AudioContext[src]
impl StructuralPartialEq for AudioContext[src]
impl WasmDescribe for AudioContext[src]
Auto Trait Implementations
impl RefUnwindSafe for AudioContext
impl !Send for AudioContext
impl !Sync for AudioContext
impl Unpin for AudioContext
impl UnwindSafe for AudioContext
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, [src]
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,