pub struct TerminateThreadsArguments {
pub thread_ids: Option<Vec<i64>>,
}
Expand description
Arguments for ‘terminateThreads’ request.
Fields§
§thread_ids: Option<Vec<i64>>
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 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 TerminateThreadsArguments
impl Debug for TerminateThreadsArguments
Source§impl Default for TerminateThreadsArguments
impl Default for TerminateThreadsArguments
Source§fn default() -> TerminateThreadsArguments
fn default() -> TerminateThreadsArguments
Returns the “default value” for a type. Read more
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 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 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