Struct cdp::dom::QuerySelectorAllCommand [] [src]

pub struct QuerySelectorAllCommand<'a> {
    pub node_id: NodeId,
    pub selector: Cow<'a, str>,
}

Executes querySelectorAll on a given node.

Command DOM.querySelectorAll

Domain Module: cdp::dom
Command Struct: cdp::dom::QuerySelectorAllCommand
Response Struct: cdp::dom::QuerySelectorAllResponse

Fields

Id of the node to query upon.

Selector string.

Trait Implementations

impl<'a> Clone for QuerySelectorAllCommand<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for QuerySelectorAllCommand<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for QuerySelectorAllCommand<'a>
[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<'a> CdpCommand for QuerySelectorAllCommand<'a>
[src]

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

impl<'a> SerializeCdpCommand for QuerySelectorAllCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for QuerySelectorAllCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for QuerySelectorAllCommand<'a>
[src]