We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338d167 commit 1a7aa4cCopy full SHA for 1a7aa4c
src/stream/stream/mod.rs
@@ -1290,14 +1290,14 @@ extension_trait! {
1290
fn ge<S>(
1291
self,
1292
other: S
1293
- ) -> impl Future<Output = bool> + '_ [GeFuture<Self, S>]
+ ) -> impl Future<Output = bool> + '_ [GeFuture<Self, S>]
1294
where
1295
Self: Sized + Stream,
1296
- S: Stream,
+ S: Stream,
1297
Self::Item: PartialOrd<S::Item>,
1298
{
1299
GeFuture::new(self, other)
1300
- }
+ }
1301
}
1302
1303
impl<S: Stream + Unpin + ?Sized> Stream for Box<S> {
0 commit comments