Struct cdp::browser::GetWindowForTargetResponse [] [src]

pub struct GetWindowForTargetResponse {
    pub window_id: WindowId,
    pub bounds: Bounds,
}

[Experimental] Get the browser window that contains the devtools target.

Command Browser.getWindowForTarget

Domain Module: cdp::browser
Command Struct: cdp::browser::GetWindowForTargetCommand
Response Struct: cdp::browser::GetWindowForTargetResponse

Fields

Browser window id.

Bounds information of the window. When window state is 'minimized', the restored window position and size are returned.

Trait Implementations

impl Clone for GetWindowForTargetResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetWindowForTargetResponse
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for GetWindowForTargetResponse
[src]

[src]

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

[src]

This method tests for !=.

impl CdpCommand for GetWindowForTargetResponse
[src]

COMMAND_NAME: &'static str = "Browser.getWindowForTarget"

impl<'a> HasCdpCommand<'a> for GetWindowForTargetResponse
[src]