[][src]Function flv_future_aio::task::spawn

pub fn spawn<F, T>(future: F) -> JoinHandle<T>

Notable traits for JoinHandle<T>

impl<T> Future for JoinHandle<T> type Output = T;
where
    F: Future<Output = T> + 'static + Send,
    T: Send + 'static,