- 非同期イテレーターとしての Stream、または多数の Future としての Stream
- 作業中
- 現在の状態
- futures と Tokio の Stream トレイト
- nightly のトレイト
- 同期イテレーターのように遅延的
- ピン留めと Stream(ピン留めの章への前方参照)
- fused Stream
- async next を使った while let
- for_each、for_each_concurrent
- collect
- into_future、buffered
- クロージャーの代わりに Future を受け取る
- いくつかのコンビネーター例
- unordered のバリエーション
- StreamGroup
- ループ内で select を使う際の危険性
- fusing
- 単なる Future との違い
- これらの代替
- トレイトの実装
- 実用上の事項とユーティリティ関数
- async_iter stream マクロ
- https://docs.rs/futures/latest/futures/sink/index.html
- 現在の状態
- https://rust-lang.github.io/rfcs/2996-async-iterator.html
- async next と poll
- 非同期イテレーション構文
- (async)ジェネレーター
- lending iterator