pub struct RestartFrameReturns {
pub call_frames: Vec<CallFrame>,
pub async_stack_trace: Option<StackTrace>,
pub async_stack_trace_id: Option<StackTraceId>,
}Expand description
Return type for Debugger.restartFrame.
Fields§
§call_frames: Vec<CallFrame>New stack trace.
async_stack_trace: Option<StackTrace>Async stack trace, if any.
async_stack_trace_id: Option<StackTraceId>Async stack trace, if any.
Trait Implementations§
Source§impl Clone for RestartFrameReturns
impl Clone for RestartFrameReturns
Source§fn clone(&self) -> RestartFrameReturns
fn clone(&self) -> RestartFrameReturns
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RestartFrameReturns
impl Debug for RestartFrameReturns
Source§impl Default for RestartFrameReturns
impl Default for RestartFrameReturns
Source§fn default() -> RestartFrameReturns
fn default() -> RestartFrameReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestartFrameReturns
impl<'de> Deserialize<'de> for RestartFrameReturns
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RestartFrameReturns
impl RefUnwindSafe for RestartFrameReturns
impl Send for RestartFrameReturns
impl Sync for RestartFrameReturns
impl Unpin for RestartFrameReturns
impl UnsafeUnpin for RestartFrameReturns
impl UnwindSafe for RestartFrameReturns
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more