pub fn spawn<T, F>(f: F) -> JoinHandle<T> ⓘwhere F: Future<Output = T> + Send + 'static, T: Send + 'static,
Spawns a new task.