pub struct StepIntoBuilder { /* private fields */ }Expand description
Builder for StepInto.
Implementations§
Source§impl StepIntoBuilder
impl StepIntoBuilder
Sourcepub fn break_on_async_call<VALUE: Into<bool>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn break_on_async_call<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Debugger will pause on the execution of the first async task which was scheduled before next pause.
Sourcepub fn skip_list<VALUE: Into<Vec<LocationRange>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn skip_list<VALUE: Into<Vec<LocationRange>>>( &mut self, value: VALUE, ) -> &mut Self
The skipList specifies location ranges that should be skipped on step into.
Trait Implementations§
Source§impl Clone for StepIntoBuilder
impl Clone for StepIntoBuilder
Source§fn clone(&self) -> StepIntoBuilder
fn clone(&self) -> StepIntoBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StepIntoBuilder
impl RefUnwindSafe for StepIntoBuilder
impl Send for StepIntoBuilder
impl Sync for StepIntoBuilder
impl Unpin for StepIntoBuilder
impl UnsafeUnpin for StepIntoBuilder
impl UnwindSafe for StepIntoBuilder
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