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