Struct cdp::browser::GetVersionResponse
[−]
[src]
pub struct GetVersionResponse<'a> { pub protocol_version: Cow<'a, str>, pub product: Cow<'a, str>, pub revision: Cow<'a, str>, pub user_agent: Cow<'a, str>, pub js_version: Cow<'a, str>, }
[Experimental] Returns version information.
Command Browser.getVersion
Domain Module: cdp::browser
Command Struct: cdp::browser::GetVersionCommand
Response Struct: cdp::browser::GetVersionResponse
Fields
protocol_version: Cow<'a, str>
Protocol version.
product: Cow<'a, str>
Product name.
revision: Cow<'a, str>
Product revision.
user_agent: Cow<'a, str>
User-Agent.
js_version: Cow<'a, str>
V8 version.
Trait Implementations
impl<'a> Clone for GetVersionResponse<'a>
[src]
fn clone(&self) -> GetVersionResponse<'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 GetVersionResponse<'a>
[src]
impl<'a> PartialEq for GetVersionResponse<'a>
[src]
fn eq(&self, __arg_0: &GetVersionResponse<'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: &GetVersionResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetVersionResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Browser.getVersion"