type CachePoolFn = Box<dyn Fn() -> Cache + Send + Sync + UnwindSafe + RefUnwindSafe>;
Expand description
The type of the closure we use to create new caches. We need to spell out all of the marker traits or else we risk leaking !MARKER impls.
Aliased Typeยง
struct CachePoolFn(/* private fields */);