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

pub struct EvaluateParams {
    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>,
}

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

impl EvaluateParams[src]

pub fn new(expression: impl Into<String>) -> EvaluateParams[src]

impl EvaluateParams[src]

impl EvaluateParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EvaluateParams[src]

impl Command for EvaluateParams[src]

type Response = EvaluateReturns

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

impl Debug for EvaluateParams[src]

impl<'de> Deserialize<'de> for EvaluateParams[src]

impl From<EvaluateParams> for Evaluation[src]

impl<T> From<T> for EvaluateParams where
    T: Into<String>, 
[src]

impl Into<CallFunctionOnParams> for EvaluateParams[src]

impl Method for EvaluateParams[src]

impl MethodType for EvaluateParams[src]

impl PartialEq<EvaluateParams> for EvaluateParams[src]

impl Serialize for EvaluateParams[src]

impl StructuralPartialEq for EvaluateParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,