pub struct AudioNodeWillBeDestroyed {
pub method: AudioNodeWillBeDestroyedMethod,
pub params: AudioNodeWillBeDestroyedParams,
}Expand description
Notifies that an existing AudioNode has been destroyed. audioNodeWillBeDestroyed
Fields§
§method: AudioNodeWillBeDestroyedMethod§params: AudioNodeWillBeDestroyedParamsImplementations§
Source§impl AudioNodeWillBeDestroyed
impl AudioNodeWillBeDestroyed
pub const IDENTIFIER: &'static str = "WebAudio.audioNodeWillBeDestroyed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AudioNodeWillBeDestroyed
impl Clone for AudioNodeWillBeDestroyed
Source§fn clone(&self) -> AudioNodeWillBeDestroyed
fn clone(&self) -> AudioNodeWillBeDestroyed
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 AudioNodeWillBeDestroyed
impl Debug for AudioNodeWillBeDestroyed
Source§impl<'de> Deserialize<'de> for AudioNodeWillBeDestroyed
impl<'de> Deserialize<'de> for AudioNodeWillBeDestroyed
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<AudioNodeWillBeDestroyed> for BrowserProtocolEvents
impl From<AudioNodeWillBeDestroyed> for BrowserProtocolEvents
Source§fn from(v: AudioNodeWillBeDestroyed) -> Self
fn from(v: AudioNodeWillBeDestroyed) -> Self
Converts to this type from the input type.
Source§impl From<AudioNodeWillBeDestroyed> for Event
impl From<AudioNodeWillBeDestroyed> for Event
Source§fn from(v: AudioNodeWillBeDestroyed) -> Self
fn from(v: AudioNodeWillBeDestroyed) -> Self
Converts to this type from the input type.
Source§impl From<AudioNodeWillBeDestroyed> for WebAudioEvents
impl From<AudioNodeWillBeDestroyed> for WebAudioEvents
Source§fn from(v: AudioNodeWillBeDestroyed) -> Self
fn from(v: AudioNodeWillBeDestroyed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AudioNodeWillBeDestroyed
impl PartialEq for AudioNodeWillBeDestroyed
Source§impl Serialize for AudioNodeWillBeDestroyed
impl Serialize for AudioNodeWillBeDestroyed
Source§impl TryFrom<BrowserProtocolEvents> for AudioNodeWillBeDestroyed
impl TryFrom<BrowserProtocolEvents> for AudioNodeWillBeDestroyed
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, <AudioNodeWillBeDestroyed as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AudioNodeWillBeDestroyed as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AudioNodeWillBeDestroyed
impl TryFrom<Event> for AudioNodeWillBeDestroyed
Source§impl TryFrom<WebAudioEvents> for AudioNodeWillBeDestroyed
impl TryFrom<WebAudioEvents> for AudioNodeWillBeDestroyed
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, <AudioNodeWillBeDestroyed as TryFrom<WebAudioEvents>>::Error>
fn try_from( e: WebAudioEvents, ) -> Result<Self, <AudioNodeWillBeDestroyed as TryFrom<WebAudioEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for AudioNodeWillBeDestroyed
Auto Trait Implementations§
impl Freeze for AudioNodeWillBeDestroyed
impl RefUnwindSafe for AudioNodeWillBeDestroyed
impl Send for AudioNodeWillBeDestroyed
impl Sync for AudioNodeWillBeDestroyed
impl Unpin for AudioNodeWillBeDestroyed
impl UnsafeUnpin for AudioNodeWillBeDestroyed
impl UnwindSafe for AudioNodeWillBeDestroyed
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