pub struct DistributedNodesUpdated {
pub method: DistributedNodesUpdatedMethod,
pub params: DistributedNodesUpdatedParams,
}Expand description
Called when distribution is changed. distributedNodesUpdated
Fields§
§method: DistributedNodesUpdatedMethod§params: DistributedNodesUpdatedParamsImplementations§
Source§impl DistributedNodesUpdated
impl DistributedNodesUpdated
pub const IDENTIFIER: &'static str = "DOM.distributedNodesUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DistributedNodesUpdated
impl Clone for DistributedNodesUpdated
Source§fn clone(&self) -> DistributedNodesUpdated
fn clone(&self) -> DistributedNodesUpdated
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 DistributedNodesUpdated
impl Debug for DistributedNodesUpdated
Source§impl<'de> Deserialize<'de> for DistributedNodesUpdated
impl<'de> Deserialize<'de> for DistributedNodesUpdated
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<DistributedNodesUpdated> for BrowserProtocolEvents
impl From<DistributedNodesUpdated> for BrowserProtocolEvents
Source§fn from(v: DistributedNodesUpdated) -> Self
fn from(v: DistributedNodesUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DistributedNodesUpdated> for DomEvents
impl From<DistributedNodesUpdated> for DomEvents
Source§fn from(v: DistributedNodesUpdated) -> Self
fn from(v: DistributedNodesUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DistributedNodesUpdated> for Event
impl From<DistributedNodesUpdated> for Event
Source§fn from(v: DistributedNodesUpdated) -> Self
fn from(v: DistributedNodesUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DistributedNodesUpdated
impl PartialEq for DistributedNodesUpdated
Source§impl Serialize for DistributedNodesUpdated
impl Serialize for DistributedNodesUpdated
Source§impl TryFrom<BrowserProtocolEvents> for DistributedNodesUpdated
impl TryFrom<BrowserProtocolEvents> for DistributedNodesUpdated
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, <DistributedNodesUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DistributedNodesUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomEvents> for DistributedNodesUpdated
impl TryFrom<DomEvents> for DistributedNodesUpdated
Source§impl TryFrom<Event> for DistributedNodesUpdated
impl TryFrom<Event> for DistributedNodesUpdated
impl StructuralPartialEq for DistributedNodesUpdated
Auto Trait Implementations§
impl Freeze for DistributedNodesUpdated
impl RefUnwindSafe for DistributedNodesUpdated
impl Send for DistributedNodesUpdated
impl Sync for DistributedNodesUpdated
impl Unpin for DistributedNodesUpdated
impl UnsafeUnpin for DistributedNodesUpdated
impl UnwindSafe for DistributedNodesUpdated
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