pub trait TaskHandle {
    fn join(self);
}
Expand description

A handle for a task which was pushed to a task pool.

Required Methods

Wait for the task to complete.

Implementations on Foreign Types

Implementors