Function async_task_group::group[][src]

pub fn group<E, Fut, F>(f: F) -> GroupJoinHandle<E>
Notable traits for GroupJoinHandle<E>
impl<E> Future for GroupJoinHandle<E> type Output = Result<(), E>;
where
    E: Send + 'static,
    F: FnOnce(TaskGroup<E>) -> Fut,
    Fut: Future<Output = Result<TaskGroup<E>, E>> + Send + 'static, 
Expand description

Create a new instance.