Struct cdp::debugger::EvaluateOnCallFrameResponse [] [src]

pub struct EvaluateOnCallFrameResponse<'a> {
    pub result: RemoteObject<'a>,
    pub exception_details: Option<ExceptionDetails<'a>>,
}

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

Object wrapper for the evaluation result.

Exception details.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

impl<'a, 'b> HasCdpCommand<'a> for EvaluateOnCallFrameResponse<'b>
[src]