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. ThreadIds are not guaranteed to correspond to a thread's system-designated identifier. A ThreadId can be retrieved from the id method on a Thread.
use std::thread;
let other_thread = thread::spawn(|| {
thread::current().id()
});
let other_thread_id = other_thread.join().unwrap();
assert!(thread::current().id() != other_thread_id); impl Eq for ThreadId
[src]
impl PartialEq for ThreadId
[src]
fn eq(&self, __arg_0: &ThreadId) -> bool
[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ThreadId) -> bool
[src]
This method tests for !=.
impl Clone for ThreadId
[src]
fn clone(&self) -> ThreadId
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for ThreadId
[src]
impl Hash for ThreadId
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for ThreadId
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
© 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