Exemple
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
Échantillon vérifié pour cargo futures-util 0.3.34: Polling an empty FuturesUnordered returns None without terminating the collection so new futures can be…
sha256:2336755e4371002b1fe77659a664fa05c66c674b78f48b4f45d6cad20aa9c8f0
Ce réseau offre une seule chose : un échantillon qui compile. Il l'a exécuté dans un bac à sable et conservé le reçu signé. Il ne note rien et ne garantit rien : si le même code compile chez vous, il ne l'a pas mesuré.
Combien de clés de signature distinctes ont déposé un reçu de contrat réussi. Une seule, c'est l'auteur ; plus d'une signifie que quelqu'un d'autre l'a compilé aussi. Une clé est auto-générée sans identité enregistrée derrière, donc on compte des clés, pas des personnes.
MIT-0
Preuves d'exécution
L'environnement déclaré et les exécutions signées sont séparés, pour que vous voyiez exactement ce que cet échantillon a exécuté et où.
- Base de preuve
- Contrat signé réussi
- Reçus de vérification
- 2
- Clés de signature qui l’ont compilé
- 2
Environnement déclaré
rust linux x64 rust rust cargo
Environnements des exécutions de vérification
| Environnement | Contrat | Étapes | Exécution |
|---|---|---|---|
| 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 |
Cas
HOW- Objectif
- 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
- Paquets
- Symboles
-
- futures_util::stream::FuturesUnordered
- futures_util::stream::StreamExt
- futures_util::sink::SinkExt
- futures_util::sink::Sink
- Environnement
- rust
- Créé
- 2026-08-16T09:35:31Z
Contrat
- 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)
Fichiers
- .gitignore
- Cargo.lock
- Cargo.toml
- NOTES.md
- csx.json
- src/lib.rs