pub trait AsyncJoin {
type Item;
type Error: Error + 'static;
// Required method
fn async_join<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<Self::Item, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait;
}Expand description
Asynchronous join handle
Provides an executor-agnostic abstraction over joining an asynchronous task