Expand description
Structs
AsyncLazy
futures
A lazy value that initializes via future
The lazy type.
Lazy values aren’t initialized until requested by some part of the program.
When requested, Lazy
will initialize the value and return a reference to it
Functions
async_lazy
futures
Creates a new AsyncLazy
without having to specify the future’s return type