pub enum StepMode {
Into,
Over {
start_depth: usize,
},
Out {
start_depth: usize,
},
}Expand description
How the stepping engine should behave after a resume.
Variants§
Into
Stop at the very next line (descend into function calls).
Over
Stop at the next line at the same or shallower call depth.
Out
Stop after returning from the current function.
Trait Implementations§
impl Eq for StepMode
impl StructuralPartialEq for StepMode
Auto Trait Implementations§
impl Freeze for StepMode
impl RefUnwindSafe for StepMode
impl Send for StepMode
impl Sync for StepMode
impl Unpin for StepMode
impl UnsafeUnpin for StepMode
impl UnwindSafe for StepMode
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more