Struct chrome_remote_interface_model::dom::GetSearchResultsCommand[][src]

pub struct GetSearchResultsCommand { /* fields omitted */ }
This is supported on crate features DOM and Runtime and experimental only.

Returns search results from given fromIndex to given toIndex from the search with the given identifier.

Implementations

impl GetSearchResultsCommand[src]

pub fn new(search_id: String, from_index: u32, to_index: u32) -> Self[src]

pub fn search_id(&self) -> &str[src]

Unique search session identifier.

pub fn from_index(&self) -> u32[src]

Start index of the search result to be returned.

pub fn to_index(&self) -> u32[src]

End index of the search result to be returned.

Trait Implementations

impl Clone for GetSearchResultsCommand[src]

impl Command for GetSearchResultsCommand[src]

type Return = GetSearchResultsReturn

Return type.

impl Debug for GetSearchResultsCommand[src]

impl<'de> Deserialize<'de> for GetSearchResultsCommand[src]

impl Serialize for GetSearchResultsCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.