pub struct SearchInResourceParams {
pub frameId: FrameId,
pub url: String,
pub query: String,
pub caseSensitive: Option<bool>,
pub isRegex: Option<bool>,
}Expand description
Searches for given string in resource content.
Fields§
§frameId: FrameIdFrame id for resource to search in.
url: StringURL of the resource to search in.
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 SearchInResourceParams
impl Clone for SearchInResourceParams
Source§fn clone(&self) -> SearchInResourceParams
fn clone(&self) -> SearchInResourceParams
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 SearchInResourceParams
impl Debug for SearchInResourceParams
Source§impl Default for SearchInResourceParams
impl Default for SearchInResourceParams
Source§fn default() -> SearchInResourceParams
fn default() -> SearchInResourceParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchInResourceParams
impl<'de> Deserialize<'de> for SearchInResourceParams
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 SearchInResourceParams
impl RefUnwindSafe for SearchInResourceParams
impl Send for SearchInResourceParams
impl Sync for SearchInResourceParams
impl Unpin for SearchInResourceParams
impl UnsafeUnpin for SearchInResourceParams
impl UnwindSafe for SearchInResourceParams
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