Struct chromiumoxide_cdp::cdp::js_protocol::runtime::EvaluateParams[][src]

pub struct EvaluateParams {
Show fields pub expression: String, pub object_group: Option<String>, pub include_command_line_api: Option<bool>, pub silent: Option<bool>, pub context_id: Option<ExecutionContextId>, pub return_by_value: Option<bool>, pub generate_preview: Option<bool>, pub user_gesture: Option<bool>, pub await_promise: Option<bool>, pub throw_on_side_effect: Option<bool>, pub timeout: Option<TimeDelta>, pub disable_breaks: Option<bool>, pub repl_mode: Option<bool>, pub allow_unsafe_eval_blocked_by_csp: Option<bool>, pub eval_as_function_fallback: Option<bool>,
}
Expand description

Evaluates expression on global object. evaluate

Fields

expression: String

Expression to evaluate.

object_group: Option<String>

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

include_command_line_api: Option<bool>

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

silent: Option<bool>

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

context_id: Option<ExecutionContextId>

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

return_by_value: Option<bool>

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

generate_preview: Option<bool>

Whether preview should be generated for the result.

user_gesture: Option<bool>

Whether execution should be treated as initiated by user in the UI.

await_promise: Option<bool>

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

throw_on_side_effect: Option<bool>

Whether to throw an exception if side effect cannot be ruled out during evaluation. This implies disableBreaks below.

timeout: Option<TimeDelta>

Terminate execution after timing out (number of milliseconds).

disable_breaks: Option<bool>

Disable breakpoints during execution.

repl_mode: Option<bool>

Setting this flag to true enables let re-declaration and top-level await. Note that let variables can only be re-declared if they originate from replMode themselves.

allow_unsafe_eval_blocked_by_csp: Option<bool>

The Content Security Policy (CSP) for the target might block ‘unsafe-eval’ which includes eval(), Function(), setTimeout() and setInterval() when called with non-callable arguments. This flag bypasses CSP for this evaluation and allows unsafe-eval. Defaults to true.

eval_as_function_fallback: Option<bool>

This is a manually added field that is not part of the protocol definition, hence ignored during serde operations.

If set to true, this field indicates, that if the command resulted in a response value of type function this, EvaluateParams command should be executed as a CallFunctionOnParams instead.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

The type of the response this request triggers on the chromium server

deserialize the response from json

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

The whole string identifier for this method like: DOM.removeNode

The name of the domain this method belongs to: DOM

The standalone identifier of the method inside the domain: removeNode

Tuple of (domain_name, method_name) : (DOM, removeNode)

The identifier for this event’s method field

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.