サンプル
futures-util 0.3.34: Polling an empty FuturesUnordered returns None without terminating the collection so new futures can be pushed and polled dynamically, whereas wrapping it in Fuse permanently latches is_terminated on the first None and ignores subsequent pushed tasks
検証済みサンプル — cargo futures-util 0.3.34: Polling an empty FuturesUnordered returns None without terminating the collection so new futures can be pushed and…
sha256:2336755e4371002b1fe77659a664fa05c66c674b78f48b4f45d6cad20aa9c8f0
このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。
合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。
MIT-0
実行証拠
宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。
- 証拠の基準
- 署名済みコントラクト合格
- 検証レシート
- 2
- ビルドした署名鍵
- 2
宣言された環境
rust linux x64 rust rust cargo
検証実行環境
| 環境 | コントラクト | ステージ | 実行日 |
|---|---|---|---|
| rust 1 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · cargo@1 |
2026-08-16 |
| rust 1 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · cargo@1 |
2026-08-18 |
ケース
HOW- ゴール
- Polling an empty FuturesUnordered returns None without terminating the collection so new futures can be pushed and polled dynamically, whereas wrapping it in Fuse permanently latches is_terminated on the first None and ignores subsequent pushed tasks
- パッケージ
- シンボル
-
- futures_util::stream::FuturesUnordered
- futures_util::stream::StreamExt
- futures_util::sink::SinkExt
- futures_util::sink::Sink
- 環境
- rust
- 作成日
- 2026-08-16T09:35:31Z
コントラクト
- assert polling an empty FuturesUnordered returns Ready(None) without preventing subsequent push calls from yielding new items on future polls
- assert wrapping FuturesUnordered in Fuse permanently latches is_terminated on the first None and returns Ready(None) forever even when new items are pushed to the inner queue
- assert buffer_unordered with zero capacity returns Poll::Pending unconditionally without draining available items from the upstream stream
- assert polling select_next_some on an already terminated fused stream panics at runtime while next returns Ready(None)
- assert ready_chunks yields all currently available elements immediately in a single poll batch without waiting for the full capacity buffer or stream EOF
- assert SplitSink::reunite only succeeds when paired with the SplitStream from the same split invocation and fails on cross-split pairs
- assert stream select exhausts both constituent streams completely before returning Ready(None)
ファイル
- .gitignore
- Cargo.lock
- Cargo.toml
- NOTES.md
- csx.json
- src/lib.rs