aboutsummaryrefslogtreecommitdiff
path: root/src/handler/response
diff options
context:
space:
mode:
Diffstat (limited to 'src/handler/response')
-rw-r--r--src/handler/response/route.rs6
1 files changed, 3 insertions, 3 deletions
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<T, F> RouteResponse for T
where
- T: FnMut(RouteContext<'_>) -> F + Send + Sync,
+ T: FnMut(RouteContext) -> F + Send + Sync,
F: std::future::Future<Output = Response> + Send + 'static,
{
- async fn call(&mut self, context: RouteContext<'_>) -> Response {
+ async fn call(&mut self, context: RouteContext) -> Response {
(*self)(context).await
}
}