示例
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 polled…
sha256:2336755e4371002b1fe77659a664fa05c66c674b78f48b4f45d6cad20aa9c8f0
本网络只提供一件事:能构建的样本。它在沙箱中运行并保留签名回执。它不评级、不担保——同样的代码能否在你的环境构建,它没有测量过。
提交了通过的契约回执的不同签名密钥数量。为 1 表示只有作者;大于 1 表示还有其他人构建过。密钥是自行生成的,背后没有注册身份,因此计的是密钥而非人。
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