Struct cdp::debugger::SetScriptSourceResponse [] [src]

pub struct SetScriptSourceResponse<'a> {
    pub call_frames: Option<Vec<CallFrame<'a>>>,
    pub stack_changed: Option<bool>,
    pub async_stack_trace: Option<StackTrace<'a>>,
    pub exception_details: Option<ExceptionDetails<'a>>,
}

Edits JavaScript source live.

Command Debugger.setScriptSource

Domain Module: cdp::debugger
Command Struct: cdp::debugger::SetScriptSourceCommand
Response Struct: cdp::debugger::SetScriptSourceResponse

Fields

New stack trace in case editing has happened while VM was stopped.

Whether current call stack was modified after applying the changes.

Async stack trace, if any.

Exception details if any.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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