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