pub fn run_blocking<Task, Output>(task: Task) -> BlockingFuture<Output> ⓘwhere Task: FnOnce() -> Output + Send + 'static, Output: Send + 'static,
Schedules owned synchronous work without blocking an async worker.