pub struct AudioNodeCreatedEvent { /* private fields */ }Available on crate features
experimental and WebAudio only.Expand description
Notifies that a new AudioNode has been created.
Implementations§
Methods from Deref<Target = AudioNode>§
pub fn node_id(&self) -> &GraphObjectId
pub fn context_id(&self) -> &GraphObjectId
pub fn node_type(&self) -> &NodeType
pub fn number_of_inputs(&self) -> f64
pub fn number_of_outputs(&self) -> f64
pub fn channel_count(&self) -> f64
pub fn channel_count_mode(&self) -> &ChannelCountMode
pub fn channel_interpretation(&self) -> &ChannelInterpretation
Trait Implementations§
Source§impl Clone for AudioNodeCreatedEvent
impl Clone for AudioNodeCreatedEvent
Source§fn clone(&self) -> AudioNodeCreatedEvent
fn clone(&self) -> AudioNodeCreatedEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AudioNodeCreatedEvent
impl Debug for AudioNodeCreatedEvent
Source§impl Deref for AudioNodeCreatedEvent
impl Deref for AudioNodeCreatedEvent
Source§impl<'de> Deserialize<'de> for AudioNodeCreatedEvent
impl<'de> Deserialize<'de> for AudioNodeCreatedEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AudioNodeCreatedEvent
impl RefUnwindSafe for AudioNodeCreatedEvent
impl Send for AudioNodeCreatedEvent
impl Sync for AudioNodeCreatedEvent
impl Unpin for AudioNodeCreatedEvent
impl UnwindSafe for AudioNodeCreatedEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more