Struct cdp::system_info::GetInfoResponse [] [src]

pub struct GetInfoResponse<'a> {
    pub gpu: GpuInfo<'a>,
    pub model_name: Cow<'a, str>,
    pub model_version: Cow<'a, str>,
    pub command_line: Cow<'a, str>,
}

[Experimental] Returns information about the system.

Command SystemInfo.getInfo

Domain Module: cdp::system_info
Command Struct: cdp::system_info::GetInfoCommand
Response Struct: cdp::system_info::GetInfoResponse

Fields

Information about the GPUs on the system.

A platform-dependent description of the model of the machine. On Mac OS, this is, for example, 'MacBookPro'. Will be the empty string if not supported.

A platform-dependent description of the version of the machine. On Mac OS, this is, for example, '10.1'. Will be the empty string if not supported.

The command line string used to launch the browser. Will be the empty string if not supported.

Trait Implementations

impl<'a> Clone for GetInfoResponse<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for GetInfoResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetInfoResponse<'a>
[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<'a> CdpCommand for GetInfoResponse<'a>
[src]

COMMAND_NAME: &'static str = "SystemInfo.getInfo"

impl<'a, 'b> HasCdpCommand<'a> for GetInfoResponse<'b>
[src]