aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/lib.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/lib.rs
parent697f92dc273ed82da8012216079361853c2457f2 (diff)
downloadaskama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.gz
askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.tar.bz2
askama-f4254dedcfcfce4000abc91b4860c36d3fb91430.zip
Omit implicit lifetimes
Diffstat (limited to 'askama_shared/src/lib.rs')
-rw-r--r--askama_shared/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/askama_shared/src/lib.rs b/askama_shared/src/lib.rs
index 8d64e7b..2800ffe 100644
--- a/askama_shared/src/lib.rs
+++ b/askama_shared/src/lib.rs
@@ -32,7 +32,7 @@ pub struct Config<'a> {
pub escapers: Vec<(HashSet<String>, String)>,
}
-impl<'a> Config<'a> {
+impl Config<'_> {
pub fn new(s: &str) -> std::result::Result<Config<'_>, CompileError> {
let root = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
let default_dirs = vec![root.join("templates")];
@@ -138,7 +138,7 @@ pub struct Syntax<'a> {
pub comment_end: &'a str,
}
-impl<'a> Default for Syntax<'a> {
+impl Default for Syntax<'_> {
fn default() -> Self {
Self {
block_start: "{%",
@@ -198,7 +198,7 @@ struct RawConfig<'d> {
escaper: Option<Vec<RawEscaper<'d>>>,
}
-impl<'d> RawConfig<'d> {
+impl RawConfig<'_> {
#[cfg(feature = "config")]
fn from_toml_str(s: &str) -> std::result::Result<RawConfig<'_>, CompileError> {
toml::from_str(s).map_err(|e| {