Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Comments
  • Loading branch information
olegnn committed Jun 6, 2022
commit fcbec82f510114ae3c4747a1c8088e4412243d15
3 changes: 2 additions & 1 deletion futures-util/src/stream/try_stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,8 @@ pub trait TryStreamExt: TryStream {
}

/// Flattens a stream of streams into just one continuous stream. Produced streams
/// will be polled concurrently and any errors are passed through without looking at them.
/// will be polled concurrently and any errors will be passed through without looking at them.
/// If the underlying base stream returns an error, it will be **immediately** propagated.
///
/// The only argument is an optional limit on the number of concurrently
/// polled streams. If this limit is not `None`, no more than `limit` streams
Expand Down