Struct cdp::runtime::RunScriptCommand [] [src]

pub struct RunScriptCommand<'a> {
    pub script_id: ScriptId<'a>,
    pub execution_context_id: Option<ExecutionContextId>,
    pub object_group: Option<Cow<'a, str>>,
    pub silent: Option<bool>,
    pub include_command_line_api: Option<bool>,
    pub return_by_value: Option<bool>,
    pub generate_preview: Option<bool>,
    pub await_promise: Option<bool>,
}

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

Id of the script to run.

Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.

Symbolic group name that can be used to release multiple objects.

In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state.

Determines whether Command Line API should be available during the evaluation.

Whether the result is expected to be a JSON object which should be sent by value.

Whether preview should be generated for the result.

Whether execution should await for resulting value and return once awaited promise is resolved.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

impl<'a> SerializeCdpCommand for RunScriptCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for RunScriptCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for RunScriptCommand<'a>
[src]