pub fn spawn<W: ThreadAccess, F, T>(w: W, f: F) -> JoinHandle<T>where F: FnOnce(<W as ThreadAccess>::World) -> T + Send + 'static, T: Send + 'static,
Spawn a new thread.