Struct cdp::dom::RequestNodeResponse
[−]
[src]
pub struct RequestNodeResponse { pub node_id: NodeId, }
Requests that the node is sent to the caller given the JavaScript node object reference. All nodes that form the path from the node to the root are also sent to the client as a series of setChildNodes
notifications.
Command DOM.requestNode
Domain Module: cdp::dom
Command Struct: cdp::dom::RequestNodeCommand
Response Struct: cdp::dom::RequestNodeResponse
Fields
node_id: NodeId
Node id for given object.
Trait Implementations
impl Clone for RequestNodeResponse
[src]
fn clone(&self) -> RequestNodeResponse
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for RequestNodeResponse
[src]
impl PartialEq for RequestNodeResponse
[src]
fn eq(&self, __arg_0: &RequestNodeResponse) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RequestNodeResponse) -> bool
[src]
This method tests for !=
.
impl CdpCommand for RequestNodeResponse
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOM.requestNode"