pub fn spawn_named<T>( name: &str, task: impl Future<Output = T> + Send + 'static, ) -> JoinHandle<T>where T: Send + 'static,
Spawns an async Tokio task with a name to be displayed in tokio-console.