Struct web_audio_api::node::DelayNode [−][src]
Node that delays the incoming audio signal by a certain amount
Implementations
impl<'a> DelayNode<'a>
[src]
pub fn new<C: AsBaseAudioContext>(context: &'a C, options: DelayOptions) -> Self
[src]
pub fn render_quanta(&self) -> u32
[src]
pub fn set_render_quanta(&self, render_quanta: u32)
[src]
Trait Implementations
impl<'a> AudioNode for DelayNode<'a>
[src]
fn registration(&self) -> &AudioContextRegistration<'_>
[src]
fn channel_config_raw(&self) -> &ChannelConfig
[src]
fn number_of_inputs(&self) -> u32
[src]
fn number_of_outputs(&self) -> u32
[src]
fn id(&self) -> &AudioNodeId
[src]
fn channel_config_cloned(&self) -> ChannelConfig
[src]
fn context(&self) -> &BaseAudioContext
[src]
fn connect<'a>(&self, dest: &'a dyn AudioNode) -> &'a dyn AudioNode
[src]
fn connect_at<'a>(
&self,
dest: &'a dyn AudioNode,
output: u32,
input: u32
) -> Result<&'a dyn AudioNode, IndexSizeError>
[src]
&self,
dest: &'a dyn AudioNode,
output: u32,
input: u32
) -> Result<&'a dyn AudioNode, IndexSizeError>
fn disconnect<'a>(&self, dest: &'a dyn AudioNode) -> &'a dyn AudioNode
[src]
fn disconnect_all(&self)
[src]
fn channel_count_mode(&self) -> ChannelCountMode
[src]
fn set_channel_count_mode(&self, v: ChannelCountMode)
[src]
fn channel_interpretation(&self) -> ChannelInterpretation
[src]
fn set_channel_interpretation(&self, v: ChannelInterpretation)
[src]
fn channel_count(&self) -> usize
[src]
fn set_channel_count(&self, v: usize)
[src]
Auto Trait Implementations
impl<'a> !RefUnwindSafe for DelayNode<'a>
impl<'a> !Send for DelayNode<'a>
impl<'a> !Sync for DelayNode<'a>
impl<'a> Unpin for DelayNode<'a>
impl<'a> !UnwindSafe for DelayNode<'a>
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,
pub 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, 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.
pub 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>,