pub fn spawn_blocking<F, T>(task: F) -> JoinHandle<T> ⓘwhere F: FnOnce() -> T + Send + 'static, T: Send + 'static,
Runs the provided closure on the global executor, and when possible, it does it in a way that doesn’t block concurrent tasks.