pub struct ContinueArguments {
pub thread_id: u64,
pub single_thread: Option<bool>,
}
Expand description
Arguments for continue
request.
Fields§
§thread_id: u64
Specifies the active thread. If the debug adapter supports single thread execution (see supportsSingleThreadExecutionRequests
) and the argument singleThread
is true, only the thread with this ID is resumed.
single_thread: Option<bool>
If this flag is true, execution is resumed only for the thread with given threadId
.
Trait Implementations§
Source§impl Clone for ContinueArguments
impl Clone for ContinueArguments
Source§fn clone(&self) -> ContinueArguments
fn clone(&self) -> ContinueArguments
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 ContinueArguments
impl Debug for ContinueArguments
Source§impl<'de> Deserialize<'de> for ContinueArguments
impl<'de> Deserialize<'de> for ContinueArguments
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 ContinueArguments
impl RefUnwindSafe for ContinueArguments
impl Send for ContinueArguments
impl Sync for ContinueArguments
impl Unpin for ContinueArguments
impl UnwindSafe for ContinueArguments
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