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 for given object.

Trait Implementations

impl Clone for RequestNodeResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RequestNodeResponse
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for RequestNodeResponse
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl CdpCommand for RequestNodeResponse
[src]

COMMAND_NAME: &'static str = "DOM.requestNode"

impl<'a> HasCdpCommand<'a> for RequestNodeResponse
[src]