pub trait JoinHandleExt { fn as_pthread_t(&self) -> RawPthread; fn into_pthread_t(self) -> RawPthread; }
Unix-specific extensions to JoinHandle
.
fn as_pthread_t(&self) -> RawPthread
Extracts the raw pthread_t without taking ownership
fn into_pthread_t(self) -> RawPthread
Consumes the thread, returning the raw pthread_t
This function transfers ownership of the underlying pthread_t to the caller. Callers are then the unique owners of the pthread_t and must either detach or join the pthread_t once it's no longer needed.
impl<T> JoinHandleExt for JoinHandle<T>
[src]
fn as_pthread_t(&self) -> RawPthread
[src]
fn into_pthread_t(self) -> RawPthread
[src]
© 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/os/unix/thread/trait.JoinHandleExt.html