1.19.0[][src]Struct std::thread::ThreadId

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.

Examples

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);Run

Trait Implementations

impl PartialEq<ThreadId> for ThreadId[src]

impl Eq for ThreadId[src]

impl Hash for ThreadId[src]

impl Debug for ThreadId[src]

impl Copy for ThreadId[src]

impl Clone for ThreadId[src]

Auto Trait Implementations

impl UnwindSafe for ThreadId

impl RefUnwindSafe for ThreadId

impl Unpin for ThreadId

impl Send for ThreadId

impl Sync for ThreadId

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.