pub fn spawn<F>(name: &str, future: F) -> JaTaskwhere F: Future + Send + 'static, F::Output: Send + 'static,
Spawns a new task. The name field is for debugging purposes only.