Skip to content

Commit 1fd8205

Browse files
committed
removes new methods unrelated to branch
1 parent ded4137 commit 1fd8205

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stream/stream/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1104,11 +1104,11 @@ extension_trait! {
11041104
fn partial_cmp<S>(
11051105
self,
11061106
other: S
1107-
) -> impl Future<Output = Option<Ordering>> + '_ [PartialCmpFuture<Self, S>]
1107+
) -> impl Future<Output = Option<Ordering>> [PartialCmpFuture<Self, S>]
11081108
where
11091109
Self: Sized + Stream,
1110-
S: Stream,
1111-
Self::Item: PartialOrd<S::Item>,
1110+
S: Stream,
1111+
<Self as Stream>::Item: PartialOrd<S::Item>,
11121112
{
11131113
PartialCmpFuture::new(self, other)
11141114
}

0 commit comments

Comments
 (0)