pub fn spawn_blocking<F, T>(task: F) -> JoinHandle<T> ⓘwhere F: FnOnce() -> T + Send + 'static, T: Send + 'static,
Runs the provided closure on a thread, which can execute blocking tasks asynchronously.