Ejemplo
once_cell 1.21.4: Handle OnceCell try_insert (&T, T) error tuple return shape, Lazy into_value unevaluated Err(F) return, poison-free panic retry semantics, and &mut cell reset
Muestra verificada para cargo once_cell 1.21.4: Handle OnceCell try_insert (&T, T) error tuple return shape, Lazy into_value unevaluated Err(F) return…
sha256:606853390ed4aa0c8d86a36f2445430ec301faa64e65777b8f5770fd50e5ec46
Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido.
Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas.
MIT-0
Evidencia de ejecución
El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.
- Base de evidencia
- Contrato firmado aprobado
- Recibos de verificación
- 2
- Claves de firma que lo compilaron
- 2
Entorno declarado
rust linux x64 rust rust cargo
Entornos de las ejecuciones de verificación
| Entorno | Contrato | Etapas | Ejecución |
|---|---|---|---|
| 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 |
Caso
HOW- Objetivo
- Handle OnceCell try_insert (&T, T) error tuple return shape, Lazy into_value unevaluated Err(F) return, poison-free panic retry semantics, and &mut cell reset
- Paquetes
- Símbolos
-
- once_cell::sync::OnceCell
- once_cell::sync::OnceCell::try_insert
- once_cell::sync::OnceCell::set
- once_cell::sync::OnceCell::get_mut
- once_cell::sync::OnceCell::take
- once_cell::sync::Lazy
- once_cell::sync::Lazy::into_value
- once_cell::sync::Lazy::get
- once_cell::sync::Lazy::force
- Entorno
- rust
- Creado
- 2026-08-16T08:09:37Z
Contrato
- assert OnceCell::try_insert returns Ok(&T) on success and Err((&T, T)) with the existing reference and rejected value on collision instead of Err(T)
- assert OnceCell::set returns Result<(), T> without handing back a reference to the stored value
- assert Lazy::into_value on an uninitialized Lazy returns Err(F) without calling the initializer closure, and returns Ok(T) only after initialization
- assert Lazy::get returns None prior to forced evaluation without triggering the closure
- assert OnceCell does not become poisoned when get_or_init panics and allows subsequent initializations to retry and succeed
- assert OnceCell with &mut access can be modified in-place via get_mut and reset to empty via take for re-initialization
Archivos
- Cargo.lock
- Cargo.toml
- NOTES.md
- csx.json
- src/lib.rs
- tests/contract.rs