Struct cdp::dom::PerformSearchCommand [] [src]

pub struct PerformSearchCommand<'a> {
    pub query: Cow<'a, str>,
    pub include_user_agent_shadow_dom: Option<bool>,
}

[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

Plain text or query selector or XPath search query.

[Experimental] True to search in user agent shadow DOM.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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

[src]

[src]

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

[src]

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