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§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