@@ -8,29 +8,24 @@ use futures_core::ready;
8
8
use futures_core:: stream:: { FusedStream , Stream } ;
9
9
use futures_core:: task:: { Context , Poll } ;
10
10
11
- use pin_project_lite:: pin_project;
12
-
13
11
use super :: assert_stream;
14
12
use crate :: stream:: { futures_unordered, FuturesUnordered , StreamExt , StreamFuture } ;
15
13
16
- pin_project ! {
17
- /// An unbounded set of streams
18
- ///
19
- /// This "combinator" provides the ability to maintain a set of streams
20
- /// and drive them all to completion.
21
- ///
22
- /// Streams are pushed into this set and their realized values are
23
- /// yielded as they become ready. Streams will only be polled when they
24
- /// generate notifications. This allows to coordinate a large number of streams.
25
- ///
26
- /// Note that you can create a ready-made `SelectAll` via the
27
- /// `select_all` function in the `stream` module, or you can start with an
28
- /// empty set with the `SelectAll::new` constructor.
29
- #[ must_use = "streams do nothing unless polled" ]
30
- pub struct SelectAll <St > {
31
- #[ pin]
32
- inner: FuturesUnordered <StreamFuture <St >>,
33
- }
14
+ /// An unbounded set of streams
15
+ ///
16
+ /// This "combinator" provides the ability to maintain a set of streams
17
+ /// and drive them all to completion.
18
+ ///
19
+ /// Streams are pushed into this set and their realized values are
20
+ /// yielded as they become ready. Streams will only be polled when they
21
+ /// generate notifications. This allows to coordinate a large number of streams.
22
+ ///
23
+ /// Note that you can create a ready-made `SelectAll` via the
24
+ /// `select_all` function in the `stream` module, or you can start with an
25
+ /// empty set with the `SelectAll::new` constructor.
26
+ #[ must_use = "streams do nothing unless polled" ]
27
+ pub struct SelectAll < St > {
28
+ inner : FuturesUnordered < StreamFuture < St > > ,
34
29
}
35
30
36
31
impl < St : Debug > Debug for SelectAll < St > {
0 commit comments