pub fn spawn<F, T>(future: F) -> JoinHandle<T> ⓘwhere F: Future<Output = T> + Send + 'static, T: Send + 'static,
Spawns an asynchronous task using the underlying executor.