2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-24 01:06:46 +00:00
This commit is contained in:
yjhmelody 2019-10-31 21:17:07 +08:00
parent f5efaaa7ba
commit 1ab3d901e4

View file

@ -34,10 +34,10 @@ where
} }
impl<L: Stream, R: Stream> Future for EqFuture<L, R> impl<L: Stream, R: Stream> Future for EqFuture<L, R>
where where
L: Stream + Sized, L: Stream + Sized,
R: Stream + Sized, R: Stream + Sized,
L::Item: PartialEq<R::Item>, L::Item: PartialEq<R::Item>,
{ {
type Output = bool; type Output = bool;
@ -53,8 +53,10 @@ impl<L: Stream, R: Stream> Future for EqFuture<L, R>
} }
match (l_val, r_val) { match (l_val, r_val) {
(Some(l), Some(r)) if l != r => {return Poll::Ready(false);}, (Some(l), Some(r)) if l != r => {
_ => {}, return Poll::Ready(false);
}
_ => {}
} }
} }
} }