Struct chromiumoxide::cdp::js_protocol::debugger::RestartFrameReturns[][src]

pub struct RestartFrameReturns {
    pub call_frames: Vec<CallFrame, Global>,
    pub async_stack_trace: Option<StackTrace>,
    pub async_stack_trace_id: Option<StackTraceId>,
}

Restarts particular call frame from the beginning. restartFrame

Fields

call_frames: Vec<CallFrame, Global>

New stack trace.

async_stack_trace: Option<StackTrace>

Async stack trace, if any.

async_stack_trace_id: Option<StackTraceId>

Async stack trace, if any.

Implementations

impl RestartFrameReturns[src]

pub fn new(call_frames: Vec<CallFrame, Global>) -> RestartFrameReturns[src]

impl RestartFrameReturns[src]

Trait Implementations

impl Clone for RestartFrameReturns[src]

impl Debug for RestartFrameReturns[src]

impl<'de> Deserialize<'de> for RestartFrameReturns[src]

impl PartialEq<RestartFrameReturns> for RestartFrameReturns[src]

impl Serialize for RestartFrameReturns[src]

impl StructuralPartialEq for RestartFrameReturns[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,