From c3ca68dfbd8a1950ab4315f130566d61596972ba Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 10 Aug 2020 17:27:52 +0600 Subject: [PATCH] remove From constraint for Sink impl --- ntex-codec/src/framed.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ntex-codec/src/framed.rs b/ntex-codec/src/framed.rs index 359acfcb..4a224814 100644 --- a/ntex-codec/src/framed.rs +++ b/ntex-codec/src/framed.rs @@ -457,9 +457,8 @@ impl Sink for Framed where T: AsyncRead + AsyncWrite + Unpin, U: Encoder + Unpin, - U::Error: From, { - type Error = U::Error; + type Error = Either; #[inline] fn poll_ready( @@ -478,7 +477,7 @@ where mut self: Pin<&mut Self>, item: ::Item, ) -> Result<(), Self::Error> { - self.write(item) + self.write(item).map_err(Either::Left) } #[inline] @@ -486,7 +485,7 @@ where mut self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll> { - self.flush(cx).map_err(From::from) + self.flush(cx).map_err(Either::Right) } #[inline] @@ -494,7 +493,7 @@ where mut self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll> { - self.close(cx).map_err(|e| e.into()) + self.close(cx).map_err(Either::Right) } }