pub struct WebSearchActionFind {
pub url: String,
pub pattern: String,
}
Expand description
Action type “find”: Searches for a pattern within a loaded page.
Fields§
§url: String
The URL of the page searched for the pattern.
pattern: String
The pattern or text to search for within the page.
Implementations§
Trait Implementations§
Source§impl Clone for WebSearchActionFind
impl Clone for WebSearchActionFind
Source§fn clone(&self) -> WebSearchActionFind
fn clone(&self) -> WebSearchActionFind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebSearchActionFind
impl Debug for WebSearchActionFind
Source§impl<'de> Deserialize<'de> for WebSearchActionFind
impl<'de> Deserialize<'de> for WebSearchActionFind
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 WebSearchActionFind
impl PartialEq for WebSearchActionFind
Source§impl Serialize for WebSearchActionFind
impl Serialize for WebSearchActionFind
impl StructuralPartialEq for WebSearchActionFind
Auto Trait Implementations§
impl Freeze for WebSearchActionFind
impl RefUnwindSafe for WebSearchActionFind
impl Send for WebSearchActionFind
impl Sync for WebSearchActionFind
impl Unpin for WebSearchActionFind
impl UnwindSafe for WebSearchActionFind
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