Struct cdp::dom::PerformSearchResponse [] [src]

pub struct PerformSearchResponse<'a> {
    pub search_id: Cow<'a, str>,
    pub result_count: i32,
}

[Experimental] Searches for a given string in the DOM tree. Use getSearchResults to access search results or cancelSearch to end this search session.

Command DOM.performSearch

Domain Module: cdp::dom
Command Struct: cdp::dom::PerformSearchCommand
Response Struct: cdp::dom::PerformSearchResponse

Fields

Unique search session identifier.

Number of search results.

Trait Implementations

impl<'a> Clone for PerformSearchResponse<'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 PerformSearchResponse<'a>
[src]

[src]

Formats the value using the given formatter.

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

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

impl<'a, 'b> HasCdpCommand<'a> for PerformSearchResponse<'b>
[src]