Struct cdp::runtime::RunScriptResponse [] [src]

pub struct RunScriptResponse<'a> {
    pub result: RemoteObject<'a>,
    pub exception_details: Option<ExceptionDetails<'a>>,
}

Runs script with given id in a given context.

Command Runtime.runScript

Domain Module: cdp::runtime
Command Struct: cdp::runtime::RunScriptCommand
Response Struct: cdp::runtime::RunScriptResponse

Fields

Run result.

Exception details.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Runtime.runScript"

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