[−][src]Struct web_sys::AudioNode
The AudioNode class.
This API requires the following crate features to be activated: AudioNode
Implementations
impl AudioNode[src]
pub fn context(&self) -> BaseAudioContext[src]
Getter for the context field of this object.
This API requires the following crate features to be activated: AudioNode, BaseAudioContext
impl AudioNode[src]
pub fn number_of_inputs(&self) -> u32[src]
Getter for the numberOfInputs field of this object.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn number_of_outputs(&self) -> u32[src]
Getter for the numberOfOutputs field of this object.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn channel_count(&self) -> u32[src]
Getter for the channelCount field of this object.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn set_channel_count(&self, value: u32)[src]
Setter for the channelCount field of this object.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn channel_count_mode(&self) -> ChannelCountMode[src]
Getter for the channelCountMode field of this object.
This API requires the following crate features to be activated: AudioNode, ChannelCountMode
impl AudioNode[src]
pub fn set_channel_count_mode(&self, value: ChannelCountMode)[src]
Setter for the channelCountMode field of this object.
This API requires the following crate features to be activated: AudioNode, ChannelCountMode
impl AudioNode[src]
pub fn channel_interpretation(&self) -> ChannelInterpretation[src]
Getter for the channelInterpretation field of this object.
This API requires the following crate features to be activated: AudioNode, ChannelInterpretation
impl AudioNode[src]
pub fn set_channel_interpretation(&self, value: ChannelInterpretation)[src]
Setter for the channelInterpretation field of this object.
This API requires the following crate features to be activated: AudioNode, ChannelInterpretation
impl AudioNode[src]
pub fn connect_with_audio_node(
&self,
destination: &AudioNode
) -> Result<AudioNode, JsValue>[src]
&self,
destination: &AudioNode
) -> Result<AudioNode, JsValue>
The connect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn connect_with_audio_node_and_output(
&self,
destination: &AudioNode,
output: u32
) -> Result<AudioNode, JsValue>[src]
&self,
destination: &AudioNode,
output: u32
) -> Result<AudioNode, JsValue>
The connect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn connect_with_audio_node_and_output_and_input(
&self,
destination: &AudioNode,
output: u32,
input: u32
) -> Result<AudioNode, JsValue>[src]
&self,
destination: &AudioNode,
output: u32,
input: u32
) -> Result<AudioNode, JsValue>
The connect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn connect_with_audio_param(
&self,
destination: &AudioParam
) -> Result<(), JsValue>[src]
&self,
destination: &AudioParam
) -> Result<(), JsValue>
The connect() method.
This API requires the following crate features to be activated: AudioNode, AudioParam
impl AudioNode[src]
pub fn connect_with_audio_param_and_output(
&self,
destination: &AudioParam,
output: u32
) -> Result<(), JsValue>[src]
&self,
destination: &AudioParam,
output: u32
) -> Result<(), JsValue>
The connect() method.
This API requires the following crate features to be activated: AudioNode, AudioParam
impl AudioNode[src]
pub fn disconnect(&self) -> Result<(), JsValue>[src]
The disconnect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn disconnect_with_output(&self, output: u32) -> Result<(), JsValue>[src]
The disconnect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn disconnect_with_audio_node(
&self,
destination: &AudioNode
) -> Result<(), JsValue>[src]
&self,
destination: &AudioNode
) -> Result<(), JsValue>
The disconnect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn disconnect_with_audio_node_and_output(
&self,
destination: &AudioNode,
output: u32
) -> Result<(), JsValue>[src]
&self,
destination: &AudioNode,
output: u32
) -> Result<(), JsValue>
The disconnect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn disconnect_with_audio_node_and_output_and_input(
&self,
destination: &AudioNode,
output: u32,
input: u32
) -> Result<(), JsValue>[src]
&self,
destination: &AudioNode,
output: u32,
input: u32
) -> Result<(), JsValue>
The disconnect() method.
This API requires the following crate features to be activated: AudioNode
impl AudioNode[src]
pub fn disconnect_with_audio_param(
&self,
destination: &AudioParam
) -> Result<(), JsValue>[src]
&self,
destination: &AudioParam
) -> Result<(), JsValue>
The disconnect() method.
This API requires the following crate features to be activated: AudioNode, AudioParam
impl AudioNode[src]
pub fn disconnect_with_audio_param_and_output(
&self,
destination: &AudioParam,
output: u32
) -> Result<(), JsValue>[src]
&self,
destination: &AudioParam,
output: u32
) -> Result<(), JsValue>
The disconnect() method.
This API requires the following crate features to be activated: AudioNode, AudioParam
Methods from Deref<Target = EventTarget>
pub fn add_event_listener_with_callback(
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventTarget
pub fn add_event_listener_with_event_listener(
&self,
type_: &str,
listener: &EventListener
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventListener, EventTarget
pub fn add_event_listener_with_callback_and_add_event_listener_options(
&self,
type_: &str,
listener: &Function,
options: &AddEventListenerOptions
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: &AddEventListenerOptions
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: AddEventListenerOptions, EventTarget
pub fn add_event_listener_with_event_listener_and_add_event_listener_options(
&self,
type_: &str,
listener: &EventListener,
options: &AddEventListenerOptions
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: &AddEventListenerOptions
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: AddEventListenerOptions, EventListener, EventTarget
pub fn add_event_listener_with_callback_and_bool(
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventTarget
pub fn add_event_listener_with_event_listener_and_bool(
&self,
type_: &str,
listener: &EventListener,
options: bool
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: bool
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventListener, EventTarget
pub fn add_event_listener_with_callback_and_add_event_listener_options_and_wants_untrusted(
&self,
type_: &str,
listener: &Function,
options: &AddEventListenerOptions,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: &AddEventListenerOptions,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: AddEventListenerOptions, EventTarget
pub fn add_event_listener_with_event_listener_and_add_event_listener_options_and_wants_untrusted(
&self,
type_: &str,
listener: &EventListener,
options: &AddEventListenerOptions,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: &AddEventListenerOptions,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: AddEventListenerOptions, EventListener, EventTarget
pub fn add_event_listener_with_callback_and_bool_and_wants_untrusted(
&self,
type_: &str,
listener: &Function,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventTarget
pub fn add_event_listener_with_event_listener_and_bool_and_wants_untrusted(
&self,
type_: &str,
listener: &EventListener,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: bool,
wants_untrusted: Option<bool>
) -> Result<(), JsValue>
The addEventListener() method.
This API requires the following crate features to be activated: EventListener, EventTarget
pub fn dispatch_event(&self, event: &Event) -> Result<bool, JsValue>[src]
The dispatchEvent() method.
This API requires the following crate features to be activated: Event, EventTarget
pub fn remove_event_listener_with_callback(
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventTarget
pub fn remove_event_listener_with_event_listener(
&self,
type_: &str,
listener: &EventListener
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventListener, EventTarget
pub fn remove_event_listener_with_callback_and_event_listener_options(
&self,
type_: &str,
listener: &Function,
options: &EventListenerOptions
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: &EventListenerOptions
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventListenerOptions, EventTarget
pub fn remove_event_listener_with_event_listener_and_event_listener_options(
&self,
type_: &str,
listener: &EventListener,
options: &EventListenerOptions
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: &EventListenerOptions
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventListener, EventListenerOptions, EventTarget
pub fn remove_event_listener_with_callback_and_bool(
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &Function,
options: bool
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventTarget
pub fn remove_event_listener_with_event_listener_and_bool(
&self,
type_: &str,
listener: &EventListener,
options: bool
) -> Result<(), JsValue>[src]
&self,
type_: &str,
listener: &EventListener,
options: bool
) -> Result<(), JsValue>
The removeEventListener() method.
This API requires the following crate features to be activated: EventListener, EventTarget
Trait Implementations
impl AsRef<AudioNode> for AnalyserNode[src]
impl AsRef<AudioNode> for AudioBufferSourceNode[src]
impl AsRef<AudioNode> for ConvolverNode[src]
impl AsRef<AudioNode> for DelayNode[src]
impl AsRef<AudioNode> for DynamicsCompressorNode[src]
impl AsRef<AudioNode> for GainNode[src]
impl AsRef<AudioNode> for IirFilterNode[src]
impl AsRef<AudioNode> for MediaElementAudioSourceNode[src]
impl AsRef<AudioNode> for MediaStreamAudioDestinationNode[src]
impl AsRef<AudioNode> for MediaStreamAudioSourceNode[src]
impl AsRef<AudioNode> for OscillatorNode[src]
impl AsRef<AudioNode> for PannerNode[src]
impl AsRef<AudioNode> for AudioDestinationNode[src]
impl AsRef<AudioNode> for ScriptProcessorNode[src]
impl AsRef<AudioNode> for StereoPannerNode[src]
impl AsRef<AudioNode> for WaveShaperNode[src]
impl AsRef<AudioNode> for AudioNode[src]
impl AsRef<AudioNode> for AudioScheduledSourceNode[src]
impl AsRef<AudioNode> for AudioWorkletNode[src]
impl AsRef<AudioNode> for BiquadFilterNode[src]
impl AsRef<AudioNode> for ChannelMergerNode[src]
impl AsRef<AudioNode> for ChannelSplitterNode[src]
impl AsRef<AudioNode> for ConstantSourceNode[src]
impl AsRef<EventTarget> for AudioNode[src]
fn as_ref(&self) -> &EventTarget[src]
impl AsRef<JsValue> for AudioNode[src]
impl AsRef<Object> for AudioNode[src]
impl Clone for AudioNode[src]
impl Debug for AudioNode[src]
impl Deref for AudioNode[src]
type Target = EventTarget
The resulting type after dereferencing.
fn deref(&self) -> &EventTarget[src]
impl Eq for AudioNode[src]
impl From<AnalyserNode> for AudioNode[src]
fn from(obj: AnalyserNode) -> AudioNode[src]
impl From<AudioBufferSourceNode> for AudioNode[src]
fn from(obj: AudioBufferSourceNode) -> AudioNode[src]
impl From<AudioDestinationNode> for AudioNode[src]
fn from(obj: AudioDestinationNode) -> AudioNode[src]
impl From<AudioNode> for JsValue[src]
impl From<AudioNode> for EventTarget[src]
fn from(obj: AudioNode) -> EventTarget[src]
impl From<AudioNode> for Object[src]
impl From<AudioScheduledSourceNode> for AudioNode[src]
fn from(obj: AudioScheduledSourceNode) -> AudioNode[src]
impl From<AudioWorkletNode> for AudioNode[src]
fn from(obj: AudioWorkletNode) -> AudioNode[src]
impl From<BiquadFilterNode> for AudioNode[src]
fn from(obj: BiquadFilterNode) -> AudioNode[src]
impl From<ChannelMergerNode> for AudioNode[src]
fn from(obj: ChannelMergerNode) -> AudioNode[src]
impl From<ChannelSplitterNode> for AudioNode[src]
fn from(obj: ChannelSplitterNode) -> AudioNode[src]
impl From<ConstantSourceNode> for AudioNode[src]
fn from(obj: ConstantSourceNode) -> AudioNode[src]
impl From<ConvolverNode> for AudioNode[src]
fn from(obj: ConvolverNode) -> AudioNode[src]
impl From<DelayNode> for AudioNode[src]
impl From<DynamicsCompressorNode> for AudioNode[src]
fn from(obj: DynamicsCompressorNode) -> AudioNode[src]
impl From<GainNode> for AudioNode[src]
impl From<IirFilterNode> for AudioNode[src]
fn from(obj: IirFilterNode) -> AudioNode[src]
impl From<JsValue> for AudioNode[src]
impl From<MediaElementAudioSourceNode> for AudioNode[src]
fn from(obj: MediaElementAudioSourceNode) -> AudioNode[src]
impl From<MediaStreamAudioDestinationNode> for AudioNode[src]
fn from(obj: MediaStreamAudioDestinationNode) -> AudioNode[src]
impl From<MediaStreamAudioSourceNode> for AudioNode[src]
fn from(obj: MediaStreamAudioSourceNode) -> AudioNode[src]
impl From<OscillatorNode> for AudioNode[src]
fn from(obj: OscillatorNode) -> AudioNode[src]
impl From<PannerNode> for AudioNode[src]
fn from(obj: PannerNode) -> AudioNode[src]
impl From<ScriptProcessorNode> for AudioNode[src]
fn from(obj: ScriptProcessorNode) -> AudioNode[src]
impl From<StereoPannerNode> for AudioNode[src]
fn from(obj: StereoPannerNode) -> AudioNode[src]
impl From<WaveShaperNode> for AudioNode[src]
fn from(obj: WaveShaperNode) -> AudioNode[src]
impl FromWasmAbi for AudioNode[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 AudioNode[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 AudioNode[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 AudioNode[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 AudioNode[src]
impl OptionIntoWasmAbi for AudioNode[src]
impl<'a> OptionIntoWasmAbi for &'a AudioNode[src]
impl PartialEq<AudioNode> for AudioNode[src]
impl RefFromWasmAbi for AudioNode[src]
type Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self are recovered from.
type Anchor = ManuallyDrop<AudioNode>
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 AudioNode[src]
impl StructuralPartialEq for AudioNode[src]
impl WasmDescribe for AudioNode[src]
Auto Trait Implementations
impl RefUnwindSafe for AudioNode
impl !Send for AudioNode
impl !Sync for AudioNode
impl Unpin for AudioNode
impl UnwindSafe for AudioNode
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>,