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
script_id: ScriptId<'a>
Id of the script to run.
execution_context_id: Option<ExecutionContextId>
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.
object_group: Option<Cow<'a, str>>
Symbolic group name that can be used to release multiple objects.
silent: Option<bool>
In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException
state.
include_command_line_api: Option<bool>
Determines whether Command Line API should be available during the evaluation.
return_by_value: Option<bool>
Whether the result is expected to be a JSON object which should be sent by value.
generate_preview: Option<bool>
Whether preview should be generated for the result.
await_promise: Option<bool>
Whether execution should await
for resulting value and return once awaited promise is resolved.
Trait Implementations
impl<'a> Clone for RunScriptCommand<'a>
[src]
fn clone(&self) -> RunScriptCommand<'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 RunScriptCommand<'a>
[src]
impl<'a> PartialEq for RunScriptCommand<'a>
[src]
fn eq(&self, __arg_0: &RunScriptCommand<'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: &RunScriptCommand<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for RunScriptCommand<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.runScript"
impl<'a> SerializeCdpCommand for RunScriptCommand<'a>
[src]
fn command_name(&self) -> &str
[src]
fn serialize_command_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
impl<'de, 'a> DeserializeCdpCommand<'de> for RunScriptCommand<'a>
[src]
fn deserialize_command<D>(
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,
[src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,