pub struct PushNodesByBackendIdsToFrontend {
pub method: PushNodesByBackendIdsToFrontendMethod,
pub params: PushNodesByBackendIdsToFrontendParams,
}Expand description
Requests that a batch of nodes is sent to the caller given their backend node ids. pushNodesByBackendIdsToFrontend
Fields§
§method: PushNodesByBackendIdsToFrontendMethod§params: PushNodesByBackendIdsToFrontendParamsImplementations§
Source§impl PushNodesByBackendIdsToFrontend
impl PushNodesByBackendIdsToFrontend
pub fn builder() -> PushNodesByBackendIdsToFrontendBuilder
Source§impl PushNodesByBackendIdsToFrontend
impl PushNodesByBackendIdsToFrontend
pub const IDENTIFIER: &'static str = "DOM.pushNodesByBackendIdsToFrontend"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PushNodesByBackendIdsToFrontend
impl Clone for PushNodesByBackendIdsToFrontend
Source§fn clone(&self) -> PushNodesByBackendIdsToFrontend
fn clone(&self) -> PushNodesByBackendIdsToFrontend
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 CommandResult for PushNodesByBackendIdsToFrontend
impl CommandResult for PushNodesByBackendIdsToFrontend
type Result = PushNodesByBackendIdsToFrontendResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for PushNodesByBackendIdsToFrontend
impl<'de> Deserialize<'de> for PushNodesByBackendIdsToFrontend
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<PushNodesByBackendIdsToFrontend> for BrowserProtocolCommands
impl From<PushNodesByBackendIdsToFrontend> for BrowserProtocolCommands
Source§fn from(v: PushNodesByBackendIdsToFrontend) -> Self
fn from(v: PushNodesByBackendIdsToFrontend) -> Self
Converts to this type from the input type.
Source§impl From<PushNodesByBackendIdsToFrontend> for Command
impl From<PushNodesByBackendIdsToFrontend> for Command
Source§fn from(v: PushNodesByBackendIdsToFrontend) -> Self
fn from(v: PushNodesByBackendIdsToFrontend) -> Self
Converts to this type from the input type.
Source§impl From<PushNodesByBackendIdsToFrontend> for DomCommands
impl From<PushNodesByBackendIdsToFrontend> for DomCommands
Source§fn from(v: PushNodesByBackendIdsToFrontend) -> Self
fn from(v: PushNodesByBackendIdsToFrontend) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PushNodesByBackendIdsToFrontend
impl PartialEq for PushNodesByBackendIdsToFrontend
Source§fn eq(&self, other: &PushNodesByBackendIdsToFrontend) -> bool
fn eq(&self, other: &PushNodesByBackendIdsToFrontend) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for PushNodesByBackendIdsToFrontend
impl TryFrom<BrowserProtocolCommands> for PushNodesByBackendIdsToFrontend
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <PushNodesByBackendIdsToFrontend as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <PushNodesByBackendIdsToFrontend as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<DomCommands> for PushNodesByBackendIdsToFrontend
impl TryFrom<DomCommands> for PushNodesByBackendIdsToFrontend
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <PushNodesByBackendIdsToFrontend as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <PushNodesByBackendIdsToFrontend as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for PushNodesByBackendIdsToFrontend
Auto Trait Implementations§
impl Freeze for PushNodesByBackendIdsToFrontend
impl RefUnwindSafe for PushNodesByBackendIdsToFrontend
impl Send for PushNodesByBackendIdsToFrontend
impl Sync for PushNodesByBackendIdsToFrontend
impl Unpin for PushNodesByBackendIdsToFrontend
impl UnsafeUnpin for PushNodesByBackendIdsToFrontend
impl UnwindSafe for PushNodesByBackendIdsToFrontend
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