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