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

pub struct ThreadId(_);
🔬 This is a nightly-only experimental API.   (thread_id #21507)

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 do not correspond to a thread's system- designated identifier.

Examples

#![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();Run

Trait Implementations

impl Eq for ThreadId
[src]

impl PartialEq for ThreadId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for ThreadId
[src]

impl Clone for ThreadId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ThreadId
1.15.0
[src]

Formats the value using the given formatter.