pub enum Mode {
Continue,
StepInto,
StepOver,
StepOverInProgress,
}Expand description
Tracing mode used to control stepping behavior.
Variants§
Continue
Continue running until the next breakpoint.
StepInto
Step into the next instruction.
StepOver
Step over the next instruction.
StepOverInProgress
Internal state used while a step-over is in progress.
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnsafeUnpin for Mode
impl UnwindSafe for Mode
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