struct JoinHandle<T> { ... }

A handle that allows to wait for the thread to finish.

Each JoinHandle must be either joined or detached before it goes out of scope. Failure to do so will result in a resource leak.

Methods

impl JoinHandle<T> { ... }