Struct cdp::debugger::SearchInContentResponse
[−]
[src]
pub struct SearchInContentResponse<'a> { pub result: Vec<SearchMatch<'a>>, }
[Experimental] Searches for given string in script content.
Command Debugger.searchInContent
Domain Module: cdp::debugger
Command Struct: cdp::debugger::SearchInContentCommand
Response Struct: cdp::debugger::SearchInContentResponse
Fields
result: Vec<SearchMatch<'a>>
List of search matches.
Trait Implementations
impl<'a> Clone for SearchInContentResponse<'a>
[src]
fn clone(&self) -> SearchInContentResponse<'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 SearchInContentResponse<'a>
[src]
impl<'a> PartialEq for SearchInContentResponse<'a>
[src]
fn eq(&self, __arg_0: &SearchInContentResponse<'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: &SearchInContentResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for SearchInContentResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.searchInContent"