type CachePool = Pool<Cache, Box<dyn Fn() -> Cache + Send + Sync + UnwindSafe + RefUnwindSafe>>;
Expand description
A type alias for our pool of meta::Cache that fixes the type parameters to what we use for the meta regex below.
Aliased Type§
struct CachePool(Box<Pool<Cache, Box<dyn Fn() -> Cache + UnwindSafe + Sync + RefUnwindSafe + Send>>>);
Tuple Fields§
§0: Box<Pool<Cache, Box<dyn Fn() -> Cache + UnwindSafe + Sync + RefUnwindSafe + Send>>>