pub type Handle = Pin<Box<dyn Future<Output = Result<(), ()>> + Send + 'static>>;
A single handle that can be waited on, as returned by spawning an essential task.
struct Handle { /* private fields */ }