Struct webdriver::response::WindowRectResponse[][src]

pub struct WindowRectResponse {
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
}

Fields

WindowProxy’s screenX attribute.

WindowProxy’s screenY attribute.

Width of the top-level browsing context’s outer dimensions, including any browser chrome and externally drawn window decorations in CSS reference pixels.

Height of the top-level browsing context’s outer dimensions, including any browser chrome and externally drawn window decorations in CSS reference pixels.

Trait Implementations

impl Debug for WindowRectResponse
[src]

Formats the value using the given formatter. Read more

impl PartialEq for WindowRectResponse
[src]

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

This method tests for !=.

Auto Trait Implementations