[][src]Struct webdriver::command::WindowRectParameters

pub struct WindowRectParameters {
    pub x: Option<i32>,
    pub y: Option<i32>,
    pub width: Option<i32>,
    pub height: Option<i32>,
}

A top-level browsing context’s window rect is a dictionary of the screenX, screenY, width, and height attributes of the WindowProxy.

In some user agents the operating system’s window dimensions, including decorations, are provided by the proprietary window.outerWidth and window.outerHeight DOM properties.

Fields

x: Option<i32>y: Option<i32>width: Option<i32>height: Option<i32>

Trait Implementations

impl Debug for WindowRectParameters[src]

impl<'de> Deserialize<'de> for WindowRectParameters[src]

impl PartialEq<WindowRectParameters> for WindowRectParameters[src]

impl Serialize for WindowRectParameters[src]

impl StructuralPartialEq for WindowRectParameters[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.