Struct cdp::runtime::CompileScriptResponse
[−]
[src]
pub struct CompileScriptResponse<'a> { pub script_id: Option<ScriptId<'a>>, pub exception_details: Option<ExceptionDetails<'a>>, }
Compiles expression.
Command Runtime.compileScript
Domain Module: cdp::runtime
Command Struct: cdp::runtime::CompileScriptCommand
Response Struct: cdp::runtime::CompileScriptResponse
Fields
script_id: Option<ScriptId<'a>>
Id of the script.
exception_details: Option<ExceptionDetails<'a>>
Exception details.
Trait Implementations
impl<'a> Clone for CompileScriptResponse<'a>
[src]
fn clone(&self) -> CompileScriptResponse<'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 CompileScriptResponse<'a>
[src]
impl<'a> PartialEq for CompileScriptResponse<'a>
[src]
fn eq(&self, __arg_0: &CompileScriptResponse<'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: &CompileScriptResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for CompileScriptResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Runtime.compileScript"