pub struct PushNodeByPathToFrontend {
pub method: PushNodeByPathToFrontendMethod,
pub params: PushNodeByPathToFrontendParams,
}Expand description
Requests that the node is sent to the caller given its path. // FIXME, use XPath pushNodeByPathToFrontend
Fields§
§method: PushNodeByPathToFrontendMethod§params: PushNodeByPathToFrontendParamsImplementations§
Source§impl PushNodeByPathToFrontend
impl PushNodeByPathToFrontend
pub const IDENTIFIER: &'static str = "DOM.pushNodeByPathToFrontend"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PushNodeByPathToFrontend
impl Clone for PushNodeByPathToFrontend
Source§fn clone(&self) -> PushNodeByPathToFrontend
fn clone(&self) -> PushNodeByPathToFrontend
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 PushNodeByPathToFrontend
impl CommandResult for PushNodeByPathToFrontend
type Result = PushNodeByPathToFrontendResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for PushNodeByPathToFrontend
impl Debug for PushNodeByPathToFrontend
Source§impl<'de> Deserialize<'de> for PushNodeByPathToFrontend
impl<'de> Deserialize<'de> for PushNodeByPathToFrontend
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<PushNodeByPathToFrontend> for BrowserProtocolCommands
impl From<PushNodeByPathToFrontend> for BrowserProtocolCommands
Source§fn from(v: PushNodeByPathToFrontend) -> Self
fn from(v: PushNodeByPathToFrontend) -> Self
Converts to this type from the input type.
Source§impl From<PushNodeByPathToFrontend> for Command
impl From<PushNodeByPathToFrontend> for Command
Source§fn from(v: PushNodeByPathToFrontend) -> Self
fn from(v: PushNodeByPathToFrontend) -> Self
Converts to this type from the input type.
Source§impl From<PushNodeByPathToFrontend> for DomCommands
impl From<PushNodeByPathToFrontend> for DomCommands
Source§fn from(v: PushNodeByPathToFrontend) -> Self
fn from(v: PushNodeByPathToFrontend) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PushNodeByPathToFrontend
impl PartialEq for PushNodeByPathToFrontend
Source§impl Serialize for PushNodeByPathToFrontend
impl Serialize for PushNodeByPathToFrontend
Source§impl TryFrom<BrowserProtocolCommands> for PushNodeByPathToFrontend
impl TryFrom<BrowserProtocolCommands> for PushNodeByPathToFrontend
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, <PushNodeByPathToFrontend as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <PushNodeByPathToFrontend as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for PushNodeByPathToFrontend
impl TryFrom<Command> for PushNodeByPathToFrontend
Source§impl TryFrom<DomCommands> for PushNodeByPathToFrontend
impl TryFrom<DomCommands> for PushNodeByPathToFrontend
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, <PushNodeByPathToFrontend as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <PushNodeByPathToFrontend as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for PushNodeByPathToFrontend
Auto Trait Implementations§
impl Freeze for PushNodeByPathToFrontend
impl RefUnwindSafe for PushNodeByPathToFrontend
impl Send for PushNodeByPathToFrontend
impl Sync for PushNodeByPathToFrontend
impl Unpin for PushNodeByPathToFrontend
impl UnsafeUnpin for PushNodeByPathToFrontend
impl UnwindSafe for PushNodeByPathToFrontend
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