Struct cdp::dom::GetSearchResultsCommand [] [src]

pub struct GetSearchResultsCommand<'a> {
    pub search_id: Cow<'a, str>,
    pub from_index: i32,
    pub to_index: i32,
}

[Experimental] Returns search results from given fromIndex to given toIndex from the sarch with the given identifier.

Command DOM.getSearchResults

Domain Module: cdp::dom
Command Struct: cdp::dom::GetSearchResultsCommand
Response Struct: cdp::dom::GetSearchResultsResponse

Fields

Unique search session identifier.

Start index of the search result to be returned.

End index of the search result to be returned.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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

[src]

[src]

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

[src]

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