Skip to content

Commit 3bee396

Browse files
yshuitaiki-e
authored andcommittedMar 30, 2023
SelectAll doesn't need pin-project (#2729)
Closes #2724
1 parent 6a436eb commit 3bee396

File tree

1 file changed

+15
-20
lines changed

1 file changed

+15
-20
lines changed
 

‎futures-util/src/stream/select_all.rs

+15-20
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,24 @@ use futures_core::ready;
88
use futures_core::stream::{FusedStream, Stream};
99
use futures_core::task::{Context, Poll};
1010

11-
use pin_project_lite::pin_project;
12-
1311
use super::assert_stream;
1412
use crate::stream::{futures_unordered, FuturesUnordered, StreamExt, StreamFuture};
1513

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>>,
3429
}
3530

3631
impl<St: Debug> Debug for SelectAll<St> {

0 commit comments

Comments
 (0)
Please sign in to comment.