pub fn spawn<F, T>(future: F)where F: Future<Output = T> + Send + 'static, T: Send + 'static,
Spawns a Send future onto the tokio runtime, detaching the resulting task.
Send