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
result: RemoteObject<'a>
Evaluation result.
exception_details: Option<ExceptionDetails<'a>>
Exception details.
Trait Implementations
impl<'a> Clone for EvaluateResponse<'a>
[src]
fn clone(&self) -> EvaluateResponse<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for EvaluateResponse<'a>
[src]
impl<'a> PartialEq for EvaluateResponse<'a>
[src]
fn eq(&self, __arg_0: &EvaluateResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &EvaluateResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for EvaluateResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.evaluate"