pub enum StartDebugging {}
Expand description
This request is sent from the debug adapter to the client to start a new debug session of the same type as the caller.
This request should only be sent if the corresponding client capability supportsStartDebuggingRequest
is true.
A client implementation of startDebugging
should start a new debug session (of the same type as the caller) in the same way that the caller’s session was started. If the client supports hierarchical debug sessions, the newly created session can be treated as a child of the caller session.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StartDebugging
impl RefUnwindSafe for StartDebugging
impl Send for StartDebugging
impl Sync for StartDebugging
impl Unpin for StartDebugging
impl UnwindSafe for StartDebugging
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