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