From 754a6434bf3bd7e8d607a1bbb639eb5a95981f14 Mon Sep 17 00:00:00 2001 From: Shella Stephens Date: Tue, 10 Sep 2024 14:26:37 -0600 Subject: [PATCH] add PagerFuture --- src/pager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pager.rs b/src/pager.rs index 6e3b2d3..66bc766 100644 --- a/src/pager.rs +++ b/src/pager.rs @@ -132,7 +132,7 @@ impl PagerService { impl Service for PagerService { type Response = PagerResponse; type Error = PagerError; - type Future = Pin> + Send + 'static>>; + type Future = PagerFuture; fn poll_ready(&mut self, _ctx: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(()))