From 4c5dd740fdf95a809b31fe5db324e75435ed2ce9 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Mon, 29 Mar 2021 15:56:01 -0700 Subject: [PATCH] templater: remove an unnecessary trait bound --- src/templater.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templater.rs b/src/templater.rs index c1e93a886..df83664a8 100644 --- a/src/templater.rs +++ b/src/templater.rs @@ -127,7 +127,7 @@ pub trait TemplateProperty { fn extract(&self, context: &C) -> O; } -pub struct ConstantTemplateProperty { +pub struct ConstantTemplateProperty { pub output: O, }