pub type TemplateMap<G> = HashMap<String, Rc<Template<G>>>;
Expand description

A type alias for a HashMap of Templates. This uses Rcs to make the Templates cloneable. In server-side multithreading, ArcTemplateMap should be used instead.