pub enum StepBack {}
Expand description
The request executes one backward step (in the given granularity) for the specified thread and allows all other threads to run backward freely by resuming them.
If the debug adapter supports single thread execution (see capability supportsSingleThreadExecutionRequests
), setting the singleThread
argument to true prevents other suspended threads from resuming.
The debug adapter first sends the response and then a stopped
event (with reason step
) after the step has completed.
Clients should only call this request if the corresponding capability supportsStepBack
is true.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StepBack
impl RefUnwindSafe for StepBack
impl Send for StepBack
impl Sync for StepBack
impl Unpin for StepBack
impl UnwindSafe for StepBack
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