|
|
|
@ -53,10 +53,13 @@ impl<L: Stream, R: Stream> Future for NeFuture<L, R>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
match (l_val, r_val) {
|
|
|
|
|
(Some(l), Some(r)) if l == r => {continue;},
|
|
|
|
|
_ => { return Poll::Ready(true); },
|
|
|
|
|
(Some(l), Some(r)) if l == r => {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
_ => {
|
|
|
|
|
return Poll::Ready(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|