pub fn spawn<T>(fut: impl Future<Output = T> + 'static) -> JoinHandle<T>Notable traits for JoinHandle<T>impl<T> Future for JoinHandle<T>    type Output = Result<T, Canceled>; where
    T: 'static,