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.

Product name.

Product revision.

User-Agent.

V8 version.

Trait Implementations

impl<'a> Clone for GetVersionResponse<'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 GetVersionResponse<'a>
[src]

[src]

Formats the value using the given formatter.

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

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

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