pub struct Pending { /* private fields */ }Expand description
Represents a breakpoint event that needs to be processed by the tracer.
When a permanent breakpoint is hit we return a Pending value containing
the breakpoint id (if assigned) and the address where it was hit. This
allows the tracer to re-install or re-register the breakpoint as needed.
Implementations§
Auto Trait Implementations§
impl Freeze for Pending
impl RefUnwindSafe for Pending
impl Send for Pending
impl Sync for Pending
impl Unpin for Pending
impl UnsafeUnpin for Pending
impl UnwindSafe for Pending
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