Trait std::os::unix::thread::JoinHandleExt
[−]
[src]
pub trait JoinHandleExt { fn as_pthread_t(&self) -> RawPthread; fn into_pthread_t(self) -> RawPthread; }
Unstable (
thread_extensions
#29791)Unix-specific extensions to std::thread::JoinHandle
Required Methods
fn as_pthread_t(&self) -> RawPthread
Unstable (
thread_extensions
#29791)Extracts the raw pthread_t without taking ownership
fn into_pthread_t(self) -> RawPthread
Unstable (
thread_extensions
#29791)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 detech or join the pthread_t once it's no longer needed.
Implementors
impl<T> JoinHandleExt for JoinHandle<T>
impl<T> JoinHandleExt for JoinHandle<T>