pub struct ThreadId(_);
A unique identifier for a running thread.
A ThreadId
is an opaque object that has a unique value for each thread that creates one. ThreadId
s do not correspond to a thread's system- designated identifier.
#![feature(thread_id)] use std::thread; let handler = thread::Builder::new() .spawn(|| { let thread = thread::current(); let thread_id = thread.id(); }) .unwrap(); handler.join().unwrap();
impl Eq for ThreadId
[src]
impl PartialEq for ThreadId
[src]
fn eq(&self, __arg_0: &ThreadId) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ThreadId) -> bool
This method tests for !=
.
impl Copy for ThreadId
[src]
impl Clone for ThreadId
[src]
fn clone(&self) -> ThreadId
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for ThreadId
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/thread/struct.ThreadId.html