pub struct SearchInResponseBodyParams {
pub request_id: RequestId,
pub query: String,
pub case_sensitive: Option<bool>,
pub is_regex: Option<bool>,
}Expand description
Searches for given string in response content. searchInResponseBody
Fields§
§request_id: RequestIdIdentifier of the network response to search.
query: StringString to search for.
case_sensitive: Option<bool>If true, search is case sensitive.
is_regex: Option<bool>If true, treats string parameter as regex.
Implementations§
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<'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
impl StructuralPartialEq for SearchInResponseBodyParams
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