pub enum WebAutomation {
Evaluate {
code: String,
},
Click {
selector: String,
},
Wait {
duration: u64,
},
WaitForNavigation,
WaitFor {
selector: String,
},
WaitForAndClick {
selector: String,
},
ScrollX {
pixels: i32,
},
ScrollY {
pixels: i32,
},
Fill {
selector: String,
value: String,
},
InfiniteScroll {
times: u32,
},
}Variants§
Trait Implementations§
Source§impl Clone for WebAutomation
impl Clone for WebAutomation
Source§fn clone(&self) -> WebAutomation
fn clone(&self) -> WebAutomation
Returns a copy 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 WebAutomation
impl Debug for WebAutomation
Source§impl<'de> Deserialize<'de> for WebAutomation
impl<'de> Deserialize<'de> for WebAutomation
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 WebAutomation
impl RefUnwindSafe for WebAutomation
impl Send for WebAutomation
impl Sync for WebAutomation
impl Unpin for WebAutomation
impl UnwindSafe for WebAutomation
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