pub fn spawn_ok<Fut>(fut: Fut)where Fut: Future<Output = ()> + Send + 'static,
task
Spawns a task that polls the given future with output () to completion.
()