diff options
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index b725859..0e9f49a 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -61,7 +61,7 @@ impl<'a> Service<&'a AddrStream> for Instance { type Error = anyhow::Error; type Future = BoxFuture<'static, Result<Self::Response>>; - fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { + fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { Poll::Ready(Ok(())) } @@ -93,7 +93,7 @@ impl Service<Request> for Connection { type Error = BalError; type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>; - fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { + fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { Poll::Ready(Ok(())) } |