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

The offset from the left edge of the screen to the window in pixels.

The offset from the top edge of the screen to the window in pixels.

The window width in pixels.

The window height in pixels.

The window state. Default to normal.

Trait Implementations

impl Clone for Bounds
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Bounds
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Bounds
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.