Struct webdriver::response::WindowRectResponse
source · pub struct WindowRectResponse {
pub x: i32,
pub y: i32,
pub width: i32,
pub height: i32,
}
Fields§
§x: i32
WindowProxy
’s screenX attribute.
y: i32
WindowProxy
’s screenY attribute.
width: i32
Width of the top-level browsing context’s outer dimensions, including any browser chrome and externally drawn window decorations in CSS reference pixels.
height: i32
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§
source§impl Debug for WindowRectResponse
impl Debug for WindowRectResponse
source§impl PartialEq<WindowRectResponse> for WindowRectResponse
impl PartialEq<WindowRectResponse> for WindowRectResponse
source§fn eq(&self, other: &WindowRectResponse) -> bool
fn eq(&self, other: &WindowRectResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.