Expand description
Parallel iterator types for vectors (Vec<T>
)
You will rarely need to interact with this module directly unless you need to name one of the iterator types.
Structs§
- Aggregate
Error - A collection of errors.
- Chain
- A stream that chains multiple streams one after another.
- Into
Concurrent Stream - Concurrent async iterator that moves out of a vector.
- Join
- A future which waits for multiple futures to complete.
- Merge
- A stream that merges multiple streams into a single stream.
- Race
- A future which waits for the first future to complete.
- RaceOk
- A future which waits for the first successful future to complete.
- TryJoin
- A future which waits for all futures to complete successfully, or abort early on error.
- Zip
- A stream that ‘zips up’ multiple streams into a single stream of pairs.