pub struct ReqwestDriverSync { /* private fields */ }Expand description
Synchronous connection to the remote WebDriver server.
Trait Implementations§
Source§impl Debug for ReqwestDriverSync
impl Debug for ReqwestDriverSync
Source§impl WebDriverHttpClientSync for ReqwestDriverSync
impl WebDriverHttpClientSync for ReqwestDriverSync
Source§fn set_request_timeout(&mut self, timeout: Duration)
fn set_request_timeout(&mut self, timeout: Duration)
Set the HTTP client request timeout.
Source§fn execute(&self, request_data: RequestData) -> WebDriverResult<Value>
fn execute(&self, request_data: RequestData) -> WebDriverResult<Value>
Execute the specified command and return the data as serde_json::Value.
fn create(params: HttpClientCreateParams) -> WebDriverResult<Self>
Auto Trait Implementations§
impl Freeze for ReqwestDriverSync
impl !RefUnwindSafe for ReqwestDriverSync
impl Send for ReqwestDriverSync
impl Sync for ReqwestDriverSync
impl Unpin for ReqwestDriverSync
impl !UnwindSafe for ReqwestDriverSync
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