type LazyFn<T> = Box<dyn FnOnce() -> T + Send + Sync + 'static>;
struct LazyFn<T>(/* private fields */);