diff --git a/ntex-service/src/and_then.rs b/ntex-service/src/and_then.rs index cc286dd1..a3e9c3da 100644 --- a/ntex-service/src/and_then.rs +++ b/ntex-service/src/and_then.rs @@ -63,7 +63,7 @@ where AndThenServiceResponse { slf: self, state: State::A { - fut: ctx.clone().call(&self.svc1, req), + fut: ctx.call(&self.svc1, req), ctx: Some(ctx), }, } diff --git a/ntex-service/src/ctx.rs b/ntex-service/src/ctx.rs index 3d107c8c..91461cd6 100644 --- a/ntex-service/src/ctx.rs +++ b/ntex-service/src/ctx.rs @@ -114,16 +114,16 @@ impl Drop for Container { } } -pub struct Ctx<'b, S: ?Sized> { +pub struct Ctx<'a, S: ?Sized> { index: usize, - waiters: &'b Rc>>>, + waiters: &'a Rc>>>, _t: marker::PhantomData>, } -impl<'b, S: ?Sized> Ctx<'b, S> { +impl<'a, S: ?Sized> Ctx<'a, S> { pub(crate) fn new( index: usize, - waiters: &'b Rc>>>, + waiters: &'a Rc>>>, ) -> Self { Self { index, @@ -134,15 +134,15 @@ impl<'b, S: ?Sized> Ctx<'b, S> { pub(crate) fn into_inner( self, - ) -> (usize, &'b Rc>>>) { + ) -> (usize, &'a Rc>>>) { (self.index, self.waiters) } /// Call service, do not check service readiness - pub(crate) fn call_nowait(&self, svc: &'b T, req: R) -> T::Future<'b> + pub(crate) fn call_nowait(&self, svc: &'a T, req: R) -> T::Future<'a> where T: Service + ?Sized, - R: 'b, + R: 'a, { svc.call( req, @@ -156,10 +156,10 @@ impl<'b, S: ?Sized> Ctx<'b, S> { #[inline] /// Wait for service readiness and then call service - pub fn call(&self, svc: &'b T, req: R) -> ServiceCall<'b, T, R> + pub fn call(&self, svc: &'a T, req: R) -> ServiceCall<'a, T, R> where T: Service + ?Sized, - R: 'b, + R: 'a, { ServiceCall { state: ServiceCallState::Ready { @@ -172,7 +172,9 @@ impl<'b, S: ?Sized> Ctx<'b, S> { } } -impl<'b, S: ?Sized> Clone for Ctx<'b, S> { +impl<'a, S: ?Sized> Copy for Ctx<'a, S> {} + +impl<'a, S: ?Sized> Clone for Ctx<'a, S> { fn clone(&self) -> Self { Self { index: self.index,