Expand description
The types in this module exist to overcome limitations of the Rust compiler, namely limitations in const generics.
Macrosยง
- lazy_
value ๐Creates a temporary struct that implementsLazyValueFn
and returns an instance of it. - value ๐Assigns the provided value to a
static
, and returns a reference to it.
Traitsยง
- Trait that helps us convert a
fn() -> &'static impl Value
to afn() -> &'static dyn Value
.