Struct cdp::runtime::RunScriptResponse
[−]
[src]
pub struct RunScriptResponse<'a> { pub result: RemoteObject<'a>, pub exception_details: Option<ExceptionDetails<'a>>, }
Runs script with given id in a given context.
Command Runtime.runScript
Domain Module: cdp::runtime
Command Struct: cdp::runtime::RunScriptCommand
Response Struct: cdp::runtime::RunScriptResponse
Fields
result: RemoteObject<'a>
Run result.
exception_details: Option<ExceptionDetails<'a>>
Exception details.
Trait Implementations
impl<'a> Clone for RunScriptResponse<'a>
[src]
fn clone(&self) -> RunScriptResponse<'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 RunScriptResponse<'a>
[src]
impl<'a> PartialEq for RunScriptResponse<'a>
[src]
fn eq(&self, __arg_0: &RunScriptResponse<'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: &RunScriptResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for RunScriptResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.runScript"