pub struct NodesDisconnectedParams {
pub context_id: GraphObjectId,
pub source_id: GraphObjectId,
pub destination_id: GraphObjectId,
pub source_output_index: Option<f64>,
pub destination_input_index: Option<f64>,
}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§
§context_id: GraphObjectId§source_id: GraphObjectId§destination_id: GraphObjectId§source_output_index: Option<f64>§destination_input_index: Option<f64>Trait Implementations§
Source§impl Clone for NodesDisconnectedParams
impl Clone for NodesDisconnectedParams
Source§fn clone(&self) -> NodesDisconnectedParams
fn clone(&self) -> NodesDisconnectedParams
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 NodesDisconnectedParams
impl Debug for NodesDisconnectedParams
Source§impl<'de> Deserialize<'de> for NodesDisconnectedParams
impl<'de> Deserialize<'de> for NodesDisconnectedParams
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 PartialEq for NodesDisconnectedParams
impl PartialEq for NodesDisconnectedParams
Source§impl Serialize for NodesDisconnectedParams
impl Serialize for NodesDisconnectedParams
impl StructuralPartialEq for NodesDisconnectedParams
Auto Trait Implementations§
impl Freeze for NodesDisconnectedParams
impl RefUnwindSafe for NodesDisconnectedParams
impl Send for NodesDisconnectedParams
impl Sync for NodesDisconnectedParams
impl Unpin for NodesDisconnectedParams
impl UnsafeUnpin for NodesDisconnectedParams
impl UnwindSafe for NodesDisconnectedParams
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