pub struct SearchInResponseBodyParams {
pub requestId: RequestId,
pub query: String,
pub caseSensitive: Option<bool>,
pub isRegex: Option<bool>,
}Expand description
Searches for given string in response content.
Fields§
§requestId: RequestIdIdentifier of the network response to search.
query: StringString to search for.
caseSensitive: Option<bool>If true, search is case sensitive.
isRegex: Option<bool>If true, treats string parameter as regex.
Trait Implementations§
Source§impl Clone for SearchInResponseBodyParams
impl Clone for SearchInResponseBodyParams
Source§fn clone(&self) -> SearchInResponseBodyParams
fn clone(&self) -> SearchInResponseBodyParams
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 Debug for SearchInResponseBodyParams
impl Debug for SearchInResponseBodyParams
Source§impl Default for SearchInResponseBodyParams
impl Default for SearchInResponseBodyParams
Source§fn default() -> SearchInResponseBodyParams
fn default() -> SearchInResponseBodyParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchInResponseBodyParams
impl<'de> Deserialize<'de> for SearchInResponseBodyParams
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
Auto Trait Implementations§
impl Freeze for SearchInResponseBodyParams
impl RefUnwindSafe for SearchInResponseBodyParams
impl Send for SearchInResponseBodyParams
impl Sync for SearchInResponseBodyParams
impl Unpin for SearchInResponseBodyParams
impl UnsafeUnpin for SearchInResponseBodyParams
impl UnwindSafe for SearchInResponseBodyParams
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