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 for WindowRectResponse
impl PartialEq 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 ==
.source§impl Serialize for WindowRectResponse
impl Serialize for WindowRectResponse
impl StructuralPartialEq for WindowRectResponse
Auto Trait Implementations§
impl Freeze for WindowRectResponse
impl RefUnwindSafe for WindowRectResponse
impl Send for WindowRectResponse
impl Sync for WindowRectResponse
impl Unpin for WindowRectResponse
impl UnwindSafe for WindowRectResponse
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