pub fn spawn<F: 'static + Future<Output = ()>>(future: F)
Expand description

Execute a future without blocking the current call. The given future is polled once initially to kickstart the async calls.