aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/input.rs
diff options
context:
space:
mode:
authorLibravatar René Kijewski <kijewski@library.vetmed.fu-berlin.de>2022-01-05 19:30:38 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-01-06 13:05:24 +0100
commitf4254dedcfcfce4000abc91b4860c36d3fb91430 (patch)
tree80203d049336d625ccfcc11cfc9102031e1ce140 /askama_shared/src/input.rs
parent697f92dc273ed82da8012216079361853c2457f2 (diff)
downloadaskama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.gz
askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.bz2
askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.zip
Omit implicit lifetimes
Diffstat (limited to 'askama_shared/src/input.rs')
-rw-r--r--askama_shared/src/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_shared/src/input.rs b/askama_shared/src/input.rs
index 30340b5..03c62d0 100644
--- a/askama_shared/src/input.rs
+++ b/askama_shared/src/input.rs
@@ -17,7 +17,7 @@ pub struct TemplateInput<'a> {
pub path: PathBuf,
}
-impl<'a> TemplateInput<'a> {
+impl TemplateInput<'_> {
/// Extract the template metadata from the `DeriveInput` structure. This
/// mostly recovers the data for the `TemplateInput` fields from the
/// `template()` attribute list fields; it also finds the of the `_parent`