pub struct WindowRectResponse {
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
}Fields§
§x: i32WindowProxy’s screenX attribute.
y: i32WindowProxy’s screenY attribute.
width: i32Width of the top-level browsing context’s outer dimensions, including any browser chrome and externally drawn window decorations in CSS reference pixels.
height: i32Height 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§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