pub type Lazy<T, F = fn() -> T> = LazyLock<T, F>;๐Deprecated:
use spin::LazyLock instead
Available on crate feature
lazylock only.Expand description
A type alias to LazyLock for compatibility reasons.
Aliased Typeยง
pub struct Lazy<T, F = fn() -> T> { /* private fields */ }