pub struct ContinuedEventBody {
pub thread_id: i64,
pub all_threads_continued: Option<bool>,
}Expand description
Arguments for a Continued event.
Fields§
§thread_id: i64The 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 ContinuedEventBody
impl Clone for ContinuedEventBody
Source§fn clone(&self) -> ContinuedEventBody
fn clone(&self) -> ContinuedEventBody
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 ContinuedEventBody
impl Debug for ContinuedEventBody
Source§impl Default for ContinuedEventBody
impl Default for ContinuedEventBody
Source§fn default() -> ContinuedEventBody
fn default() -> ContinuedEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContinuedEventBody
impl RefUnwindSafe for ContinuedEventBody
impl Send for ContinuedEventBody
impl Sync for ContinuedEventBody
impl Unpin for ContinuedEventBody
impl UnsafeUnpin for ContinuedEventBody
impl UnwindSafe for ContinuedEventBody
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