fn restart_io_if_running_boxed( context: Context, ) -> Pin<Box<dyn Future<Output = ()> + Send>>
Same as context.restart_io_if_running(), but Box::pined and with a + Send bound, so that it can be called recursively.
context.restart_io_if_running()
Box::pin
+ Send