pub struct EventNodeParamConnected {
pub context_id: GraphObjectId,
pub source_id: GraphObjectId,
pub destination_id: GraphObjectId,
pub source_output_index: Option<f64>,
}Expand description
Notifies that an AudioNode is connected to an AudioParam. nodeParamConnected
Fields
context_id: GraphObjectIdsource_id: GraphObjectIddestination_id: GraphObjectIdsource_output_index: Option<f64>Implementations
sourceimpl EventNodeParamConnected
impl EventNodeParamConnected
pub const IDENTIFIER: &'static str
Trait Implementations
sourceimpl Clone for EventNodeParamConnected
impl Clone for EventNodeParamConnected
sourcefn clone(&self) -> EventNodeParamConnected
fn clone(&self) -> EventNodeParamConnected
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for EventNodeParamConnected
impl Debug for EventNodeParamConnected
sourceimpl<'de> Deserialize<'de> for EventNodeParamConnected
impl<'de> Deserialize<'de> for EventNodeParamConnected
sourcefn 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
sourceimpl From<EventNodeParamConnected> for CdpEvent
impl From<EventNodeParamConnected> for CdpEvent
sourcefn from(el: EventNodeParamConnected) -> CdpEvent
fn from(el: EventNodeParamConnected) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventNodeParamConnected
impl IntoEventKind for EventNodeParamConnected
sourcefn event_kind() -> EventKind where
Self: Sized + 'static,
fn event_kind() -> EventKind where
Self: Sized + 'static,
What kind of event this type is
sourceimpl Method for EventNodeParamConnected
impl Method for EventNodeParamConnected
sourcefn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like: DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to: DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain: removeNode
sourceimpl MethodType for EventNodeParamConnected
impl MethodType for EventNodeParamConnected
sourceimpl PartialEq<EventNodeParamConnected> for EventNodeParamConnected
impl PartialEq<EventNodeParamConnected> for EventNodeParamConnected
sourcefn eq(&self, other: &EventNodeParamConnected) -> bool
fn eq(&self, other: &EventNodeParamConnected) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EventNodeParamConnected) -> bool
fn ne(&self, other: &EventNodeParamConnected) -> bool
This method tests for !=.
sourceimpl Serialize for EventNodeParamConnected
impl Serialize for EventNodeParamConnected
sourceimpl TryFrom<CdpEvent> for EventNodeParamConnected
impl TryFrom<CdpEvent> for EventNodeParamConnected
impl StructuralPartialEq for EventNodeParamConnected
Auto Trait Implementations
impl RefUnwindSafe for EventNodeParamConnected
impl Send for EventNodeParamConnected
impl Sync for EventNodeParamConnected
impl Unpin for EventNodeParamConnected
impl UnwindSafe for EventNodeParamConnected
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more