std::thread::ThreadId

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

Examples

#![feature(thread_id)]

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

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 Clone for ThreadId [src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ThreadId [src]

impl Hash for ThreadId [src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for ThreadId [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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部