pub type TaskHandle = Pin<Box<dyn Future<Output = Result<(), ()>> + Send>>;
A handle for waiting the task’s completion.
struct TaskHandle {}