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
gpu: GpuInfo<'a>
Information about the GPUs on the system.
model_name: Cow<'a, str>
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.
model_version: Cow<'a, str>
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.
command_line: Cow<'a, str>
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]
fn clone(&self) -> GetInfoResponse<'a>
[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
impl<'a> Debug for GetInfoResponse<'a>
[src]
impl<'a> PartialEq for GetInfoResponse<'a>
[src]
fn eq(&self, __arg_0: &GetInfoResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &GetInfoResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetInfoResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "SystemInfo.getInfo"