pub enum VCont {
Continue,
ContinueWithSignal(u8),
Step,
StepWithSignal(u8),
Stop,
RangeStep(Range<u64>),
}
Expand description
vCont commands
Variants§
Continue
Continue until breakpoint, signal or exit
ContinueWithSignal(u8)
Like Continue
, but replace any current signal with a
specified one
Step
Step one machine instruction
StepWithSignal(u8)
Like Step
, but replace any current signal with a specified
one
Stop
Only relevant in non-stop mode. Stop a thread and when queried, indicate a stop with signal 0
RangeStep(Range<u64>)
Keep stepping until instruction pointer is outside of specified range. May also spuriously stop, such as when a breakpoint is reached.
Trait Implementations§
impl StructuralPartialEq for VCont
Auto Trait Implementations§
impl Freeze for VCont
impl RefUnwindSafe for VCont
impl Send for VCont
impl Sync for VCont
impl Unpin for VCont
impl UnwindSafe for VCont
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