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 80720aa commit ea27ba3Copy full SHA for ea27ba3
futures-util/src/compat/stream01ext.rs
@@ -3,10 +3,11 @@ use futures::Stream as Stream01;
3
4
impl<St: Stream01> Stream01CompatExt for St {}
5
6
-/// Extension trait for futures 0.1 [`Stream`][Stream01]
+/// Extension trait for futures 0.1 [`Stream`][futures::Stream]
7
pub trait Stream01CompatExt: Stream01 {
8
- /// Converts a futures 0.1 [`Stream<Item = T, Error = E>`][Stream01] into a
9
- /// futures 0.3 [`Stream<Item = Result<T, E>>`][Stream03].
+ /// Converts a futures 0.1 [`Stream<Item = T, Error = E>`][futures::Stream]
+ /// into a futures 0.3 [`Stream<Item = Result<T,
10
+ /// E>>`][futures_core::Stream].
11
fn compat(self) -> Compat<Self, ()>
12
where
13
Self: Sized,
0 commit comments