Trait std::os::unix::thread::JoinHandleExt 1.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
fn as_pthread_t(&self) -> RawPthread
[src]
fn as_pthread_t(&self) -> RawPthread
[src]提取原始 pthread_t 而不拥有所有权
fn into_pthread_t(self) -> RawPthread
[src]
fn into_pthread_t(self) -> RawPthread
[src]消耗线程,返回原始 pthread_t
此函数将基础 pthread_t 的所有权 ** 转移给调用方。 这样,调用方便是 pthread_t 的唯一所有者,一旦不再需要,则必须分离或加入 pthread_t。