pub struct PauseOnAsyncCallBuilder { /* private fields */ }Expand description
Builder for PauseOnAsyncCall.
Implementations§
Source§impl PauseOnAsyncCallBuilder
impl PauseOnAsyncCallBuilder
Sourcepub fn parent_stack_trace_id<VALUE: Into<StackTraceId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn parent_stack_trace_id<VALUE: Into<StackTraceId>>( &mut self, value: VALUE, ) -> &mut Self
Debugger will pause when async call with given stack trace is started.
Sourcepub fn build(&self) -> Result<PauseOnAsyncCall, PauseOnAsyncCallBuilderError>
pub fn build(&self) -> Result<PauseOnAsyncCall, PauseOnAsyncCallBuilderError>
Trait Implementations§
Source§impl Clone for PauseOnAsyncCallBuilder
impl Clone for PauseOnAsyncCallBuilder
Source§fn clone(&self) -> PauseOnAsyncCallBuilder
fn clone(&self) -> PauseOnAsyncCallBuilder
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 PauseOnAsyncCallBuilder
impl RefUnwindSafe for PauseOnAsyncCallBuilder
impl Send for PauseOnAsyncCallBuilder
impl Sync for PauseOnAsyncCallBuilder
impl Unpin for PauseOnAsyncCallBuilder
impl UnsafeUnpin for PauseOnAsyncCallBuilder
impl UnwindSafe for PauseOnAsyncCallBuilder
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