Enum webdriver::response::WebDriverResponse[][src]

pub enum WebDriverResponse {
    CloseWindow(CloseWindowResponse),
    Cookie(CookieResponse),
    Cookies(CookiesResponse),
    DeleteSession,
    ElementRect(ElementRectResponse),
    Generic(ValueResponse),
    NewSession(NewSessionResponse),
    Timeouts(TimeoutsResponse),
    Void,
    WindowRect(WindowRectResponse),
}

Variants

Trait Implementations

impl Debug for WebDriverResponse
[src]

Formats the value using the given formatter. Read more

impl PartialEq for WebDriverResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Serialize for WebDriverResponse
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations