pub struct PausedEventBuilder { /* private fields */ }Available on crate features
Debugger and Runtime only.Implementations§
Source§impl PausedEventBuilder
impl PausedEventBuilder
Sourcepub fn call_frames(&mut self, v: Vec<CallFrame>) -> &mut Self
pub fn call_frames(&mut self, v: Vec<CallFrame>) -> &mut Self
Call stack the virtual machine stopped on.
Sourcepub fn reason(&mut self, v: PausedEventReason) -> &mut Self
pub fn reason(&mut self, v: PausedEventReason) -> &mut Self
Pause reason.
Sourcepub fn data(&mut self, v: PausedEventData) -> &mut Self
pub fn data(&mut self, v: PausedEventData) -> &mut Self
Object containing break-specific auxiliary properties.
Sourcepub fn hit_breakpoints(&mut self, v: Vec<String>) -> &mut Self
pub fn hit_breakpoints(&mut self, v: Vec<String>) -> &mut Self
Hit breakpoints IDs
Sourcepub fn async_stack_trace(&mut self, v: StackTrace) -> &mut Self
pub fn async_stack_trace(&mut self, v: StackTrace) -> &mut Self
Async stack trace, if any.
Sourcepub fn async_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
Available on crate feature experimental only.
pub fn async_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
experimental only.Async stack trace, if any.
Sourcepub fn async_call_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
👎DeprecatedAvailable on crate feature experimental only.
pub fn async_call_stack_trace_id(&mut self, v: JsonValue) -> &mut Self
experimental only.Never present, will be removed.
pub fn build(&mut self) -> Result<PausedEvent, &'static str>
Trait Implementations§
Source§impl Clone for PausedEventBuilder
impl Clone for PausedEventBuilder
Source§fn clone(&self) -> PausedEventBuilder
fn clone(&self) -> PausedEventBuilder
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 PausedEventBuilder
impl Debug for PausedEventBuilder
Auto Trait Implementations§
impl Freeze for PausedEventBuilder
impl RefUnwindSafe for PausedEventBuilder
impl Send for PausedEventBuilder
impl Sync for PausedEventBuilder
impl Unpin for PausedEventBuilder
impl UnwindSafe for PausedEventBuilder
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