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