pub type ArcTemplateMap<G> = HashMap<String, Arc<Template<G>>>;
Expand description

A type alias for a HashMap of Templates that uses Arcs for thread-safety. If you don’t need to share templates between threads, use TemplateMap instead.