pub struct TerminateThreadsArguments {
pub thread_ids: Option<Vec<u64>>,
}Expand description
Arguments for terminateThreads request.
Fields§
§thread_ids: Option<Vec<u64>>Ids of threads to be terminated.
Trait Implementations§
Source§impl Clone for TerminateThreadsArguments
impl Clone for TerminateThreadsArguments
Source§fn clone(&self) -> TerminateThreadsArguments
fn clone(&self) -> TerminateThreadsArguments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TerminateThreadsArguments
impl Debug for TerminateThreadsArguments
Source§impl<'de> Deserialize<'de> for TerminateThreadsArguments
impl<'de> Deserialize<'de> for TerminateThreadsArguments
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
impl Eq for TerminateThreadsArguments
Source§impl Hash for TerminateThreadsArguments
impl Hash for TerminateThreadsArguments
Source§impl PartialEq for TerminateThreadsArguments
impl PartialEq for TerminateThreadsArguments
Source§fn eq(&self, other: &TerminateThreadsArguments) -> bool
fn eq(&self, other: &TerminateThreadsArguments) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TerminateThreadsArguments
Auto Trait Implementations§
impl Freeze for TerminateThreadsArguments
impl RefUnwindSafe for TerminateThreadsArguments
impl Send for TerminateThreadsArguments
impl Sync for TerminateThreadsArguments
impl Unpin for TerminateThreadsArguments
impl UnsafeUnpin for TerminateThreadsArguments
impl UnwindSafe for TerminateThreadsArguments
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