Type Alias regex_automata::meta::regex::CachePool
source · 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 + Sync + UnwindSafe + Send + RefUnwindSafe>>>);
Fields§
§0: Box<Pool<Cache, Box<dyn Fn() -> Cache + Sync + UnwindSafe + Send + RefUnwindSafe>>>