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