pub enum SetInstructionBreakpoints {}
Expand description
Replaces all existing instruction breakpoints. Typically, instruction breakpoints would be set from a disassembly window.
To clear all instruction breakpoints, specify an empty array.
When an instruction breakpoint is hit, a stopped
event (with reason instruction breakpoint
) is generated.
Clients should only call this request if the corresponding capability supportsInstructionBreakpoints
is true.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SetInstructionBreakpoints
impl RefUnwindSafe for SetInstructionBreakpoints
impl Send for SetInstructionBreakpoints
impl Sync for SetInstructionBreakpoints
impl Unpin for SetInstructionBreakpoints
impl UnwindSafe for SetInstructionBreakpoints
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