Struct std::thread::JoinHandle
[−]
[src]
pub struct JoinHandle<T>(_);
An owned permission to join on a thread (block on its termination).
A JoinHandle
detaches the child thread when it is dropped.
Due to platform restrictions, it is not possible to Clone
this
handle: the ability to join a child thread is a uniquely-owned
permission.