Type Alias BoxLazy

Source
type BoxLazy<T> = Pin<Arc<Lazy<T, BoxFuture<'static, T>>>>;

Aliased Typeยง

#[repr(transparent)]
struct BoxLazy<T> { /* private fields */ }