Struct cdp::debugger::SearchInContentCommand [] [src]

pub struct SearchInContentCommand<'a> {
    pub script_id: ScriptId<'a>,
    pub query: Cow<'a, str>,
    pub case_sensitive: Option<bool>,
    pub is_regex: Option<bool>,
}

[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

Id of the script to search in.

String to search for.

If true, search is case sensitive.

If true, treats string parameter as regex.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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

[src]

[src]

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

[src]

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