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.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Debugger.getScriptSource"

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