pub fn rt_spawn<FUT, N: AsRef<str>>( name: N, fut: FUT, ) -> Result<JoinHandle<FUT::Output>>where FUT: Future + Send + 'static, FUT::Output: Send,
Schedule func to run in the main runtime pool, which is named “localset” for legacy reasons.