Skip to main content

AsyncFactory

Type Alias AsyncFactory 

Source
type AsyncFactory<T> = Box<dyn FnOnce(BuildCtx) -> Pin<Box<dyn Future<Output = T> + Send>> + Send>;

Aliased Typeยง

struct AsyncFactory<T>(/* private fields */);