Struct cdp::debugger::GetScriptSourceResponse
[−]
[src]
pub struct GetScriptSourceResponse<'a> {
pub script_source: Cow<'a, str>,
}Returns source for the script with given id.
Command Debugger.getScriptSource
Domain Module: cdp::debugger
Command Struct: cdp::debugger::GetScriptSourceCommand
Response Struct: cdp::debugger::GetScriptSourceResponse
Fields
script_source: Cow<'a, str>
Script source.
Trait Implementations
impl<'a> Clone for GetScriptSourceResponse<'a>[src]
fn clone(&self) -> GetScriptSourceResponse<'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 GetScriptSourceResponse<'a>[src]
impl<'a> PartialEq for GetScriptSourceResponse<'a>[src]
fn eq(&self, __arg_0: &GetScriptSourceResponse<'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: &GetScriptSourceResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for GetScriptSourceResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.getScriptSource"