Struct webdriver::command::WindowRectParameters
source · pub struct WindowRectParameters {
pub x: Option<i32>,
pub y: Option<i32>,
pub width: Option<i32>,
pub height: Option<i32>,
}
Expand description
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§
source§impl Debug for WindowRectParameters
impl Debug for WindowRectParameters
source§impl<'de> Deserialize<'de> for WindowRectParameters
impl<'de> Deserialize<'de> for WindowRectParameters
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for WindowRectParameters
impl PartialEq for WindowRectParameters
source§fn eq(&self, other: &WindowRectParameters) -> bool
fn eq(&self, other: &WindowRectParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WindowRectParameters
impl Serialize for WindowRectParameters
impl StructuralPartialEq for WindowRectParameters
Auto Trait Implementations§
impl Freeze for WindowRectParameters
impl RefUnwindSafe for WindowRectParameters
impl Send for WindowRectParameters
impl Sync for WindowRectParameters
impl Unpin for WindowRectParameters
impl UnwindSafe for WindowRectParameters
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