pub struct AudioNodeCreated {
pub method: AudioNodeCreatedMethod,
pub params: AudioNodeCreatedParams,
}Expand description
Notifies that a new AudioNode has been created. audioNodeCreated
Fields§
§method: AudioNodeCreatedMethod§params: AudioNodeCreatedParamsImplementations§
Source§impl AudioNodeCreated
impl AudioNodeCreated
pub const IDENTIFIER: &'static str = "WebAudio.audioNodeCreated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AudioNodeCreated
impl Clone for AudioNodeCreated
Source§fn clone(&self) -> AudioNodeCreated
fn clone(&self) -> AudioNodeCreated
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 AudioNodeCreated
impl Debug for AudioNodeCreated
Source§impl<'de> Deserialize<'de> for AudioNodeCreated
impl<'de> Deserialize<'de> for AudioNodeCreated
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
Source§impl From<AudioNodeCreated> for BrowserProtocolEvents
impl From<AudioNodeCreated> for BrowserProtocolEvents
Source§fn from(v: AudioNodeCreated) -> Self
fn from(v: AudioNodeCreated) -> Self
Converts to this type from the input type.
Source§impl From<AudioNodeCreated> for Event
impl From<AudioNodeCreated> for Event
Source§fn from(v: AudioNodeCreated) -> Self
fn from(v: AudioNodeCreated) -> Self
Converts to this type from the input type.
Source§impl From<AudioNodeCreated> for WebAudioEvents
impl From<AudioNodeCreated> for WebAudioEvents
Source§fn from(v: AudioNodeCreated) -> Self
fn from(v: AudioNodeCreated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AudioNodeCreated
impl PartialEq for AudioNodeCreated
Source§impl Serialize for AudioNodeCreated
impl Serialize for AudioNodeCreated
Source§impl TryFrom<BrowserProtocolEvents> for AudioNodeCreated
impl TryFrom<BrowserProtocolEvents> for AudioNodeCreated
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <AudioNodeCreated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AudioNodeCreated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AudioNodeCreated
impl TryFrom<Event> for AudioNodeCreated
Source§impl TryFrom<WebAudioEvents> for AudioNodeCreated
impl TryFrom<WebAudioEvents> for AudioNodeCreated
Source§type Error = WebAudioEvents
type Error = WebAudioEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: WebAudioEvents,
) -> Result<Self, <AudioNodeCreated as TryFrom<WebAudioEvents>>::Error>
fn try_from( e: WebAudioEvents, ) -> Result<Self, <AudioNodeCreated as TryFrom<WebAudioEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for AudioNodeCreated
Auto Trait Implementations§
impl Freeze for AudioNodeCreated
impl RefUnwindSafe for AudioNodeCreated
impl Send for AudioNodeCreated
impl Sync for AudioNodeCreated
impl Unpin for AudioNodeCreated
impl UnsafeUnpin for AudioNodeCreated
impl UnwindSafe for AudioNodeCreated
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