pub struct BrowserClickParams {
pub session_id: String,
pub element_id: Option<String>,
pub selector: Option<String>,
pub wait_for: Option<BrowserWaitCondition>,
pub timeout_ms: Option<u64>,
}Fields§
§session_id: String§element_id: Option<String>§selector: Option<String>§wait_for: Option<BrowserWaitCondition>§timeout_ms: Option<u64>Trait Implementations§
Source§impl Clone for BrowserClickParams
impl Clone for BrowserClickParams
Source§fn clone(&self) -> BrowserClickParams
fn clone(&self) -> BrowserClickParams
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 BrowserClickParams
impl Debug for BrowserClickParams
Source§impl Default for BrowserClickParams
impl Default for BrowserClickParams
Source§fn default() -> BrowserClickParams
fn default() -> BrowserClickParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrowserClickParams
impl<'de> Deserialize<'de> for BrowserClickParams
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 BrowserClickParams
impl RefUnwindSafe for BrowserClickParams
impl Send for BrowserClickParams
impl Sync for BrowserClickParams
impl Unpin for BrowserClickParams
impl UnsafeUnpin for BrowserClickParams
impl UnwindSafe for BrowserClickParams
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