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

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

impl Debug for WindowRectResponse[src]

impl PartialEq<WindowRectResponse> for WindowRectResponse[src]

impl Serialize for WindowRectResponse[src]

impl StructuralPartialEq for WindowRectResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.