pub trait JoinHandleExt {
// Required methods
fn as_pthread_t(&self) -> RawPthread;
fn into_pthread_t(self) -> RawPthread;
}
Available on Unix only.
Expand description
特定于 Unix 的 JoinHandle
扩展。
Required Methods§
sourcefn as_pthread_t(&self) -> RawPthread
fn as_pthread_t(&self) -> RawPthread
提取原始 pthread_t 而不拥有所有权
sourcefn into_pthread_t(self) -> RawPthread
fn into_pthread_t(self) -> RawPthread
消耗线程,返回原始 pthread_t
该函数将底层 pthread_t 的所有权转移给调用者。 这样,调用者便是 pthread_t 的唯一所有者,一旦不再需要,则必须分离或加入 pthread_t。