Struct chromiumoxide::cdp::browser_protocol::dom::EventDistributedNodesUpdated
source · [−]pub struct EventDistributedNodesUpdated {
pub insertion_point_id: NodeId,
pub distributed_nodes: Vec<BackendNode, Global>,
}Expand description
Called when distrubution is changed. distributedNodesUpdated
Fields
insertion_point_id: NodeIdInsertion point where distrubuted nodes were updated.
distributed_nodes: Vec<BackendNode, Global>Distributed nodes for given insertion point.
Implementations
sourceimpl EventDistributedNodesUpdated
impl EventDistributedNodesUpdated
pub const IDENTIFIER: &'static str
Trait Implementations
sourceimpl Clone for EventDistributedNodesUpdated
impl Clone for EventDistributedNodesUpdated
sourcefn clone(&self) -> EventDistributedNodesUpdated
fn clone(&self) -> EventDistributedNodesUpdated
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 EventDistributedNodesUpdated
impl Debug for EventDistributedNodesUpdated
sourceimpl<'de> Deserialize<'de> for EventDistributedNodesUpdated
impl<'de> Deserialize<'de> for EventDistributedNodesUpdated
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventDistributedNodesUpdated, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventDistributedNodesUpdated, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventDistributedNodesUpdated> for CdpEvent
impl From<EventDistributedNodesUpdated> for CdpEvent
sourcefn from(el: EventDistributedNodesUpdated) -> CdpEvent
fn from(el: EventDistributedNodesUpdated) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventDistributedNodesUpdated
impl IntoEventKind for EventDistributedNodesUpdated
sourcefn event_kind() -> EventKind where
EventDistributedNodesUpdated: 'static,
EventDistributedNodesUpdated: Sized,
fn event_kind() -> EventKind where
EventDistributedNodesUpdated: 'static,
EventDistributedNodesUpdated: Sized,
What kind of event this type is
sourceimpl Method for EventDistributedNodesUpdated
impl Method for EventDistributedNodesUpdated
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
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 PartialEq<EventDistributedNodesUpdated> for EventDistributedNodesUpdated
impl PartialEq<EventDistributedNodesUpdated> for EventDistributedNodesUpdated
sourcefn eq(&self, other: &EventDistributedNodesUpdated) -> bool
fn eq(&self, other: &EventDistributedNodesUpdated) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EventDistributedNodesUpdated) -> bool
fn ne(&self, other: &EventDistributedNodesUpdated) -> bool
This method tests for !=.
sourceimpl Serialize for EventDistributedNodesUpdated
impl Serialize for EventDistributedNodesUpdated
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EventDistributedNodesUpdated
Auto Trait Implementations
impl RefUnwindSafe for EventDistributedNodesUpdated
impl Send for EventDistributedNodesUpdated
impl Sync for EventDistributedNodesUpdated
impl Unpin for EventDistributedNodesUpdated
impl UnwindSafe for EventDistributedNodesUpdated
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