Enum webdriver::response::WebDriverResponse
source · pub enum WebDriverResponse {
Show 13 variants
NewWindow(NewWindowResponse),
CloseWindow(CloseWindowResponse),
Cookie(CookieResponse),
Cookies(CookiesResponse),
DeleteSession,
ElementRect(ElementRectResponse),
Generic(ValueResponse),
WebAuthnAddVirtualAuthenticator(u64),
WebAuthnGetCredentials(GetCredentialsResponse),
NewSession(NewSessionResponse),
Timeouts(TimeoutsResponse),
Void,
WindowRect(WindowRectResponse),
}
Variants§
NewWindow(NewWindowResponse)
CloseWindow(CloseWindowResponse)
Cookie(CookieResponse)
Cookies(CookiesResponse)
DeleteSession
ElementRect(ElementRectResponse)
Generic(ValueResponse)
WebAuthnAddVirtualAuthenticator(u64)
WebAuthnGetCredentials(GetCredentialsResponse)
NewSession(NewSessionResponse)
Timeouts(TimeoutsResponse)
Void
WindowRect(WindowRectResponse)
Implementations§
source§impl WebDriverResponse
impl WebDriverResponse
pub fn serialize<__S>(
__self: &WebDriverResponse,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Trait Implementations§
source§impl Debug for WebDriverResponse
impl Debug for WebDriverResponse
source§impl PartialEq for WebDriverResponse
impl PartialEq for WebDriverResponse
source§fn eq(&self, other: &WebDriverResponse) -> bool
fn eq(&self, other: &WebDriverResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WebDriverResponse
impl Serialize for WebDriverResponse
impl StructuralPartialEq for WebDriverResponse
Auto Trait Implementations§
impl Freeze for WebDriverResponse
impl RefUnwindSafe for WebDriverResponse
impl Send for WebDriverResponse
impl Sync for WebDriverResponse
impl Unpin for WebDriverResponse
impl UnwindSafe for WebDriverResponse
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