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
call_frames: Vec<CallFrame<'a>>
New stack trace.
async_stack_trace: Option<StackTrace<'a>>
Async stack trace, if any.
Trait Implementations
impl<'a> Clone for RestartFrameResponse<'a>
[src]
fn clone(&self) -> RestartFrameResponse<'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 RestartFrameResponse<'a>
[src]
impl<'a> PartialEq for RestartFrameResponse<'a>
[src]
fn eq(&self, __arg_0: &RestartFrameResponse<'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: &RestartFrameResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for RestartFrameResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Debugger.restartFrame"