pub struct SearchInResponseBody {
pub method: SearchInResponseBodyMethod,
pub params: SearchInResponseBodyParams,
}Expand description
Searches for given string in response content. searchInResponseBody
Fields§
§method: SearchInResponseBodyMethod§params: SearchInResponseBodyParamsImplementations§
Source§impl SearchInResponseBody
impl SearchInResponseBody
pub fn builder() -> SearchInResponseBodyBuilder
Source§impl SearchInResponseBody
impl SearchInResponseBody
pub const IDENTIFIER: &'static str = "Network.searchInResponseBody"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SearchInResponseBody
impl Clone for SearchInResponseBody
Source§fn clone(&self) -> SearchInResponseBody
fn clone(&self) -> SearchInResponseBody
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 SearchInResponseBody
impl CommandResult for SearchInResponseBody
type Result = SearchInResponseBodyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SearchInResponseBody
impl Debug for SearchInResponseBody
Source§impl<'de> Deserialize<'de> for SearchInResponseBody
impl<'de> Deserialize<'de> for SearchInResponseBody
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<SearchInResponseBody> for BrowserProtocolCommands
impl From<SearchInResponseBody> for BrowserProtocolCommands
Source§fn from(v: SearchInResponseBody) -> Self
fn from(v: SearchInResponseBody) -> Self
Converts to this type from the input type.
Source§impl From<SearchInResponseBody> for Command
impl From<SearchInResponseBody> for Command
Source§fn from(v: SearchInResponseBody) -> Self
fn from(v: SearchInResponseBody) -> Self
Converts to this type from the input type.
Source§impl From<SearchInResponseBody> for NetworkCommands
impl From<SearchInResponseBody> for NetworkCommands
Source§fn from(v: SearchInResponseBody) -> Self
fn from(v: SearchInResponseBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SearchInResponseBody
impl PartialEq for SearchInResponseBody
Source§impl Serialize for SearchInResponseBody
impl Serialize for SearchInResponseBody
Source§impl TryFrom<BrowserProtocolCommands> for SearchInResponseBody
impl TryFrom<BrowserProtocolCommands> for SearchInResponseBody
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, <SearchInResponseBody as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SearchInResponseBody as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SearchInResponseBody
impl TryFrom<Command> for SearchInResponseBody
Source§impl TryFrom<NetworkCommands> for SearchInResponseBody
impl TryFrom<NetworkCommands> for SearchInResponseBody
Source§type Error = NetworkCommands
type Error = NetworkCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkCommands,
) -> Result<Self, <SearchInResponseBody as TryFrom<NetworkCommands>>::Error>
fn try_from( e: NetworkCommands, ) -> Result<Self, <SearchInResponseBody as TryFrom<NetworkCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SearchInResponseBody
Auto Trait Implementations§
impl Freeze for SearchInResponseBody
impl RefUnwindSafe for SearchInResponseBody
impl Send for SearchInResponseBody
impl Sync for SearchInResponseBody
impl Unpin for SearchInResponseBody
impl UnsafeUnpin for SearchInResponseBody
impl UnwindSafe for SearchInResponseBody
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