pub struct ContinueArguments {
pub thread_id: i64,
}
Expand description
Arguments for ‘continue’ request.
Fields§
§thread_id: i64
Continue execution for the specified thread (if possible). If the backend cannot continue on a single thread but will continue on all threads, it should set the ‘allThreadsContinued’ attribute in the response to true.
Trait Implementations§
Source§impl Clone for ContinueArguments
impl Clone for ContinueArguments
Source§fn clone(&self) -> ContinueArguments
fn clone(&self) -> ContinueArguments
Returns a copy 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
Source§impl PartialEq for ContinueArguments
impl PartialEq for ContinueArguments
Source§impl Serialize for ContinueArguments
impl Serialize for ContinueArguments
impl StructuralPartialEq for ContinueArguments
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