aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-29 21:49:42 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-29 21:49:44 +0100
commitf334e07b9e9f435a279ace92d56855c63ec1ad4e (patch)
tree1f6d932c9072f450b1c6de8d300ae6593c021c31 /askama_shared
parent4587ba6ff7d4d65576a9125e067828a131ac0e4d (diff)
downloadaskama-f334e07b9e9f435a279ace92d56855c63ec1ad4e.tar.gz
askama-f334e07b9e9f435a279ace92d56855c63ec1ad4e.tar.bz2
askama-f334e07b9e9f435a279ace92d56855c63ec1ad4e.zip
Generalize hashmap parameter as suggested by clippy
Diffstat (limited to 'askama_shared')
-rw-r--r--askama_shared/src/generator.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/askama_shared/src/generator.rs b/askama_shared/src/generator.rs
index 3171c38..dd33e12 100644
--- a/askama_shared/src/generator.rs
+++ b/askama_shared/src/generator.rs
@@ -16,9 +16,9 @@ use std::{cmp, hash, mem, str};
use syn;
-pub fn generate(
+pub fn generate<S: std::hash::BuildHasher>(
input: &TemplateInput,
- contexts: &HashMap<&PathBuf, Context>,
+ contexts: &HashMap<&PathBuf, Context, S>,
heritage: &Option<Heritage>,
integrations: Integrations,
) -> String {
@@ -26,11 +26,11 @@ pub fn generate(
.build(&contexts[&input.path])
}
-struct Generator<'a> {
+struct Generator<'a, S: std::hash::BuildHasher> {
// The template input state: original struct AST and attributes
input: &'a TemplateInput<'a>,
// All contexts, keyed by the package-relative template path
- contexts: &'a HashMap<&'a PathBuf, Context<'a>>,
+ contexts: &'a HashMap<&'a PathBuf, Context<'a>, S>,
// The heritage contains references to blocks and their ancestry
heritage: &'a Option<Heritage<'a>>,
// What integrations need to be generated
@@ -52,14 +52,14 @@ struct Generator<'a> {
named: usize,
}
-impl<'a> Generator<'a> {
+impl<'a, S: std::hash::BuildHasher> Generator<'a, S> {
fn new<'n>(
input: &'n TemplateInput,
- contexts: &'n HashMap<&'n PathBuf, Context<'n>>,
+ contexts: &'n HashMap<&'n PathBuf, Context<'n>, S>,
heritage: &'n Option<Heritage>,
integrations: Integrations,
locals: SetChain<'n, &'n str>,
- ) -> Generator<'n> {
+ ) -> Generator<'n, S> {
Generator {
input,
contexts,
@@ -74,7 +74,7 @@ impl<'a> Generator<'a> {
}
}
- fn child(&mut self) -> Generator {
+ fn child(&mut self) -> Generator<'_, S> {
let locals = SetChain::with_parent(&self.locals);
Self::new(
self.input,