pub struct ContinuedEvent {
pub thread_id: u64,
pub all_threads_continued: Option<bool>,
}
Expand description
The event indicates that the execution of the debuggee has continued.
Please note: a debug adapter is not expected to send this event in response to a request that implies that execution continues, e.g. launch
or continue
.
It is only necessary to send a continued
event if there was no previous request that implied this.
Fields§
§thread_id: u64
The thread which was continued.
all_threads_continued: Option<bool>
If allThreadsContinued
is true, a debug adapter can announce that all threads have continued.
Trait Implementations§
Source§impl Clone for ContinuedEvent
impl Clone for ContinuedEvent
Source§fn clone(&self) -> ContinuedEvent
fn clone(&self) -> ContinuedEvent
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 moreSource§impl Debug for ContinuedEvent
impl Debug for ContinuedEvent
Source§impl<'de> Deserialize<'de> for ContinuedEvent
impl<'de> Deserialize<'de> for ContinuedEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContinuedEvent
impl RefUnwindSafe for ContinuedEvent
impl Send for ContinuedEvent
impl Sync for ContinuedEvent
impl Unpin for ContinuedEvent
impl UnwindSafe for ContinuedEvent
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