pub struct GetSearchResults {
pub method: GetSearchResultsMethod,
pub params: GetSearchResultsParams,
}Expand description
Returns search results from given fromIndex to given toIndex from the search with the given
identifier.
getSearchResults
Fields§
§method: GetSearchResultsMethod§params: GetSearchResultsParamsImplementations§
Source§impl GetSearchResults
impl GetSearchResults
pub fn builder() -> GetSearchResultsBuilder
Source§impl GetSearchResults
impl GetSearchResults
pub const IDENTIFIER: &'static str = "DOM.getSearchResults"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetSearchResults
impl Clone for GetSearchResults
Source§fn clone(&self) -> GetSearchResults
fn clone(&self) -> GetSearchResults
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandResult for GetSearchResults
impl CommandResult for GetSearchResults
type Result = GetSearchResultsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetSearchResults
impl Debug for GetSearchResults
Source§impl<'de> Deserialize<'de> for GetSearchResults
impl<'de> Deserialize<'de> for GetSearchResults
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<GetSearchResults> for BrowserProtocolCommands
impl From<GetSearchResults> for BrowserProtocolCommands
Source§fn from(v: GetSearchResults) -> Self
fn from(v: GetSearchResults) -> Self
Converts to this type from the input type.
Source§impl From<GetSearchResults> for Command
impl From<GetSearchResults> for Command
Source§fn from(v: GetSearchResults) -> Self
fn from(v: GetSearchResults) -> Self
Converts to this type from the input type.
Source§impl From<GetSearchResults> for DomCommands
impl From<GetSearchResults> for DomCommands
Source§fn from(v: GetSearchResults) -> Self
fn from(v: GetSearchResults) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetSearchResults
impl PartialEq for GetSearchResults
Source§impl Serialize for GetSearchResults
impl Serialize for GetSearchResults
Source§impl TryFrom<BrowserProtocolCommands> for GetSearchResults
impl TryFrom<BrowserProtocolCommands> for GetSearchResults
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetSearchResults as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetSearchResults as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetSearchResults
impl TryFrom<Command> for GetSearchResults
Source§impl TryFrom<DomCommands> for GetSearchResults
impl TryFrom<DomCommands> for GetSearchResults
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <GetSearchResults as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetSearchResults as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetSearchResults
Auto Trait Implementations§
impl Freeze for GetSearchResults
impl RefUnwindSafe for GetSearchResults
impl Send for GetSearchResults
impl Sync for GetSearchResults
impl Unpin for GetSearchResults
impl UnsafeUnpin for GetSearchResults
impl UnwindSafe for GetSearchResults
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more