diff options
author | René Kijewski <kijewski@library.vetmed.fu-berlin.de> | 2022-01-05 19:30:38 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2022-01-06 13:05:24 +0100 |
commit | f4254dedcfcfce4000abc91b4860c36d3fb91430 (patch) | |
tree | 80203d049336d625ccfcc11cfc9102031e1ce140 /askama_shared/src/generator.rs | |
parent | 697f92dc273ed82da8012216079361853c2457f2 (diff) | |
download | askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.gz askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.bz2 askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.zip |
Omit implicit lifetimes
Diffstat (limited to 'askama_shared/src/generator.rs')
-rw-r--r-- | askama_shared/src/generator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_shared/src/generator.rs b/askama_shared/src/generator.rs index ad413ea..8b1fb33 100644 --- a/askama_shared/src/generator.rs +++ b/askama_shared/src/generator.rs @@ -1680,7 +1680,7 @@ impl LocalMeta { // type SetChain<'a, T> = MapChain<'a, T, ()>; #[derive(Debug)] -struct MapChain<'a, K: 'a, V: 'a> +struct MapChain<'a, K, V> where K: cmp::Eq + hash::Hash, { |