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

pub struct EventPaused {
    pub call_frames: Vec<CallFrame, Global>,
    pub reason: PausedReason,
    pub data: Option<Value>,
    pub hit_breakpoints: Option<Vec<String, Global>>,
    pub async_stack_trace: Option<StackTrace>,
    pub async_stack_trace_id: Option<StackTraceId>,
}

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. paused

Fields

call_frames: Vec<CallFrame, Global>

Call stack the virtual machine stopped on.

reason: PausedReason

Pause reason.

data: Option<Value>

Object containing break-specific auxiliary properties.

hit_breakpoints: Option<Vec<String, Global>>

Hit breakpoints IDs

async_stack_trace: Option<StackTrace>

Async stack trace, if any.

async_stack_trace_id: Option<StackTraceId>

Async stack trace, if any.

Implementations

impl EventPaused[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EventPaused[src]

impl Debug for EventPaused[src]

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

impl Into<CdpEvent> for EventPaused[src]

impl IntoEventKind for EventPaused[src]

impl Method for EventPaused[src]

impl MethodType for EventPaused[src]

impl PartialEq<EventPaused> for EventPaused[src]

impl Serialize for EventPaused[src]

impl StructuralPartialEq for EventPaused[src]

impl TryFrom<CdpEvent> for EventPaused[src]

type Error = CdpEvent

The type returned in the event of a conversion error.

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> Event for T where
    T: SealedEvent, 
[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>,