pub fn try_spawn<F, T>( scheduler: Scheduler, param: impl IntoSchedParam, f: F, ) -> JoinHandle<T>where F: FnOnce(RtResult<()>) -> T + Send + 'static, T: Send + 'static,