pub struct SearchInResourceParams {
pub frame_id: Box<FrameId>,
pub url: String,
pub query: String,
pub case_sensitive: Option<bool>,
pub is_regex: Option<bool>,
}Expand description
Searches for given string in resource content. searchInResource
Fields§
§frame_id: Box<FrameId>Frame id for resource to search in.
url: StringURL of the resource to search in.
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 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<'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
Source§impl PartialEq for SearchInResourceParams
impl PartialEq for SearchInResourceParams
Source§impl Serialize for SearchInResourceParams
impl Serialize for SearchInResourceParams
impl StructuralPartialEq for SearchInResourceParams
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