pub fn parallel<S, T, O, F, Fut>(
stream: S,
concurrency: usize,
f: F,
) -> impl Stream<Item = AppResult<O>> + Send + 'staticExpand description
Process up to concurrency items concurrently.
Output order is not preserved (items complete as they finish).
Uses futures::stream::FuturesUnordered for zero-copy task tracking.