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
search_id: Cow<'a, str>
Unique search session identifier.
result_count: i32
Number of search results.
Trait Implementations
impl<'a> Clone for PerformSearchResponse<'a>
[src]
fn clone(&self) -> PerformSearchResponse<'a>
[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<'a> Debug for PerformSearchResponse<'a>
[src]
impl<'a> PartialEq for PerformSearchResponse<'a>
[src]
fn eq(&self, __arg_0: &PerformSearchResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &PerformSearchResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for PerformSearchResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOM.performSearch"