Struct cdp::browser::Bounds
[−]
[src]
pub struct Bounds { pub left: Option<i32>, pub top: Option<i32>, pub width: Option<i32>, pub height: Option<i32>, pub window_state: Option<WindowState>, }
[Experimental] Browser window bounds information
Fields
left: Option<i32>
The offset from the left edge of the screen to the window in pixels.
top: Option<i32>
The offset from the top edge of the screen to the window in pixels.
width: Option<i32>
The window width in pixels.
height: Option<i32>
The window height in pixels.
window_state: Option<WindowState>
The window state. Default to normal.
Trait Implementations
impl Clone for Bounds
[src]
fn clone(&self) -> Bounds
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more