pub struct ActionFind {
pub pattern: String,
pub type_: String,
pub url: String,
}Expand description
Action type “find_in_page”: Searches for a pattern within a loaded page.
Fields§
§pattern: StringThe pattern or text to search for within the page.
type_: StringThe action type.
url: StringThe URL of the page searched for the pattern.
Trait Implementations§
Source§impl Clone for ActionFind
impl Clone for ActionFind
Source§fn clone(&self) -> ActionFind
fn clone(&self) -> ActionFind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionFind
impl Debug for ActionFind
Source§impl<'de> Deserialize<'de> for ActionFind
impl<'de> Deserialize<'de> for ActionFind
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 ActionFind
impl RefUnwindSafe for ActionFind
impl Send for ActionFind
impl Sync for ActionFind
impl Unpin for ActionFind
impl UnsafeUnpin for ActionFind
impl UnwindSafe for ActionFind
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