aboutsummaryrefslogtreecommitdiff
path: root/src/handler/response
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-06 08:34:24 +0000
committerFuwn <[email protected]>2023-04-06 08:34:24 +0000
commit873cef6fbba01c99733c97378b5f001779604cf4 (patch)
tree4dc531b2005740ec5048350ecdae7ba15836e058 /src/handler/response
parentfeat(cargo): bump 0.3.1 -> 0.3.2 (diff)
downloadwindmark-873cef6fbba01c99733c97378b5f001779604cf4.tar.xz
windmark-873cef6fbba01c99733c97378b5f001779604cf4.zip
fix(context): custom parameters format for easy lifetimes
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
}
}