//! A value that executes futures.
use Future;
use Pin;
/// 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.
pub type JoinHandle = ;
/// A value that executes futures.
/// see [tokio::Executor](https://docs.rs/tokio/0.2.0-alpha.6/tokio/executor/trait.Executor.html)