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