pub fn boxed_task<F>(f: F) -> Pin<Box<dyn Future<Output = ()> + Send + 'static>>where F: Future<Output = ()> + Send + 'static,
Convenience: schedule a one-shot closure that returns a boxed future.