Trait std::os::unix::thread::JoinHandleExt1.9.0[][src]

pub trait JoinHandleExt {
    fn as_pthread_t(&self) -> RawPthread;
fn into_pthread_t(self) -> RawPthread; }
This is supported on Unix only.
Expand description

特定于 Unix 的 JoinHandle 扩展。

Required methods

提取原始 pthread_t 而不拥有所有权

消耗线程,返回原始 pthread_t

此函数将基础 pthread_t 的所有权 ** 转移给调用方。 这样,调用方便是 pthread_t 的唯一所有者,一旦不再需要,则必须分离或加入 pthread_t。

Implementors