pub fn spawn_blocking<F, T>(task: F) -> JoinHandle<T> ⓘwhere F: FnOnce() -> T + Send + 'static, T: Send + 'static,
spawn_blocking will use the global executor instance, which is determined by the cargo features, to spawn the given blocking task.
spawn_blocking