From 873cef6fbba01c99733c97378b5f001779604cf4 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 6 Apr 2023 08:34:24 +0000 Subject: fix(context): custom parameters format for easy lifetimes --- src/handler/response/route.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/handler/response') diff --git a/src/handler/response/route.rs b/src/handler/response/route.rs index a65b889..c7df774 100644 --- a/src/handler/response/route.rs +++ b/src/handler/response/route.rs @@ -23,16 +23,16 @@ use crate::{context::RouteContext, Response}; #[allow(clippy::module_name_repetitions)] #[async_trait] pub trait RouteResponse: Send + Sync { - async fn call(&mut self, context: RouteContext<'_>) -> Response; + async fn call(&mut self, context: RouteContext) -> Response; } #[async_trait] impl RouteResponse for T where - T: FnMut(RouteContext<'_>) -> F + Send + Sync, + T: FnMut(RouteContext) -> F + Send + Sync, F: std::future::Future + Send + 'static, { - async fn call(&mut self, context: RouteContext<'_>) -> Response { + async fn call(&mut self, context: RouteContext) -> Response { (*self)(context).await } } -- cgit v1.2.3