Struct cdp::debugger::RestartFrameResponse [] [src]

pub struct RestartFrameResponse<'a> {
    pub call_frames: Vec<CallFrame<'a>>,
    pub async_stack_trace: Option<StackTrace<'a>>,
}

Restarts particular call frame from the beginning.

Command Debugger.restartFrame

Domain Module: cdp::debugger
Command Struct: cdp::debugger::RestartFrameCommand
Response Struct: cdp::debugger::RestartFrameResponse

Fields

New stack trace.

Async stack trace, if any.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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