pub struct BreakpointHitOutcome {
pub matched: bool,
pub should_stop: bool,
pub log_messages: Vec<String>,
}Expand description
Result of applying a runtime breakpoint hit to stored breakpoint metadata.
Fields§
§matched: boolTrue when at least one verified breakpoint matched the file/line location.
should_stop: boolTrue when execution should stop and emit a stopped event.
log_messages: Vec<String>Logpoint messages to emit as output events.
Trait Implementations§
Source§impl Clone for BreakpointHitOutcome
impl Clone for BreakpointHitOutcome
Source§fn clone(&self) -> BreakpointHitOutcome
fn clone(&self) -> BreakpointHitOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BreakpointHitOutcome
impl Debug for BreakpointHitOutcome
Source§impl Default for BreakpointHitOutcome
impl Default for BreakpointHitOutcome
Source§fn default() -> BreakpointHitOutcome
fn default() -> BreakpointHitOutcome
Returns the “default value” for a type. Read more
impl Eq for BreakpointHitOutcome
Source§impl PartialEq for BreakpointHitOutcome
impl PartialEq for BreakpointHitOutcome
Source§fn eq(&self, other: &BreakpointHitOutcome) -> bool
fn eq(&self, other: &BreakpointHitOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BreakpointHitOutcome
Auto Trait Implementations§
impl Freeze for BreakpointHitOutcome
impl RefUnwindSafe for BreakpointHitOutcome
impl Send for BreakpointHitOutcome
impl Sync for BreakpointHitOutcome
impl Unpin for BreakpointHitOutcome
impl UnsafeUnpin for BreakpointHitOutcome
impl UnwindSafe for BreakpointHitOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.