Struct cdp::runtime::EvaluateResponse [] [src]

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

Evaluates expression on global object.

Command Runtime.evaluate

Domain Module: cdp::runtime
Command Struct: cdp::runtime::EvaluateCommand
Response Struct: cdp::runtime::EvaluateResponse

Fields

Evaluation result.

Exception details.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Runtime.evaluate"

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