[][src]Type Definition mobc::executor::JoinHandle

type JoinHandle = Box<dyn Future<Output = ()> + Send>;

A handle that awaits the result of a task. Dropping a JoinHandle will detach the task, meaning that there is no longer a handle to the task and no way to join on it. Created when a task is spawned.