Expand description
A no_std-compatible replacement for std::sync::LazyLock.
When the std feature is enabled, this delegates directly to
std::sync::LazyLock. In no_std mode, this delegates to
[spin::Lazy] which uses a spin-based Once internally.
Structsยง
- Lazy
Lock - A thread-safe, lazily-initialized value.