Struct cdp::debugger::EvaluateOnCallFrameCommand [] [src]

pub struct EvaluateOnCallFrameCommand<'a> {
    pub call_frame_id: CallFrameId<'a>,
    pub expression: Cow<'a, str>,
    pub object_group: Option<Cow<'a, str>>,
    pub include_command_line_api: Option<bool>,
    pub silent: Option<bool>,
    pub return_by_value: Option<bool>,
    pub generate_preview: Option<bool>,
    pub throw_on_side_effect: Option<bool>,
}

Evaluates expression on a given call frame.

Command Debugger.evaluateOnCallFrame

Domain Module: cdp::debugger
Command Struct: cdp::debugger::EvaluateOnCallFrameCommand
Response Struct: cdp::debugger::EvaluateOnCallFrameResponse

Fields

Call frame identifier to evaluate on.

Expression to evaluate.

String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup).

Specifies whether command line API should be available to the evaluated expression, defaults to false.

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

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

[Experimental] Whether preview should be generated for the result.

[Experimental] Whether to throw an exception if side effect cannot be ruled out during evaluation.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Debugger.evaluateOnCallFrame"

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

[src]

[src]

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

[src]

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