W3cubDocs

/Rust

Struct std::thread::ThreadId

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

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.

© 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