dispatch

Function dispatch 

Source
pub fn dispatch<F>(future: F)
where F: Future + Send + 'static, F::Output: Send + 'static,
Expand description

Spawns a new asynchronous task in the background without a handle. Basically the same as spawn.