pub struct NodesDisconnected {
pub method: NodesDisconnectedMethod,
pub params: NodesDisconnectedParams,
}Expand description
Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected. nodesDisconnected
Fields§
§method: NodesDisconnectedMethod§params: NodesDisconnectedParamsImplementations§
Source§impl NodesDisconnected
impl NodesDisconnected
pub const IDENTIFIER: &'static str = "WebAudio.nodesDisconnected"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for NodesDisconnected
impl Clone for NodesDisconnected
Source§fn clone(&self) -> NodesDisconnected
fn clone(&self) -> NodesDisconnected
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 NodesDisconnected
impl Debug for NodesDisconnected
Source§impl<'de> Deserialize<'de> for NodesDisconnected
impl<'de> Deserialize<'de> for NodesDisconnected
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<NodesDisconnected> for BrowserProtocolEvents
impl From<NodesDisconnected> for BrowserProtocolEvents
Source§fn from(v: NodesDisconnected) -> Self
fn from(v: NodesDisconnected) -> Self
Converts to this type from the input type.
Source§impl From<NodesDisconnected> for Event
impl From<NodesDisconnected> for Event
Source§fn from(v: NodesDisconnected) -> Self
fn from(v: NodesDisconnected) -> Self
Converts to this type from the input type.
Source§impl From<NodesDisconnected> for WebAudioEvents
impl From<NodesDisconnected> for WebAudioEvents
Source§fn from(v: NodesDisconnected) -> Self
fn from(v: NodesDisconnected) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NodesDisconnected
impl PartialEq for NodesDisconnected
Source§impl Serialize for NodesDisconnected
impl Serialize for NodesDisconnected
Source§impl TryFrom<BrowserProtocolEvents> for NodesDisconnected
impl TryFrom<BrowserProtocolEvents> for NodesDisconnected
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, <NodesDisconnected as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <NodesDisconnected as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for NodesDisconnected
impl TryFrom<Event> for NodesDisconnected
Source§impl TryFrom<WebAudioEvents> for NodesDisconnected
impl TryFrom<WebAudioEvents> for NodesDisconnected
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, <NodesDisconnected as TryFrom<WebAudioEvents>>::Error>
fn try_from( e: WebAudioEvents, ) -> Result<Self, <NodesDisconnected as TryFrom<WebAudioEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for NodesDisconnected
Auto Trait Implementations§
impl Freeze for NodesDisconnected
impl RefUnwindSafe for NodesDisconnected
impl Send for NodesDisconnected
impl Sync for NodesDisconnected
impl Unpin for NodesDisconnected
impl UnsafeUnpin for NodesDisconnected
impl UnwindSafe for NodesDisconnected
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