pub enum StepOut {}
Expand description
The request resumes the given thread to step out (return) from a function/method and allows all other threads to run 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.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StepOut
impl RefUnwindSafe for StepOut
impl Send for StepOut
impl Sync for StepOut
impl Unpin for StepOut
impl UnwindSafe for StepOut
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