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

List of search matches.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Debugger.searchInContent"

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