File tree 5 files changed +39
-5
lines changed
5 files changed +39
-5
lines changed Original file line number Diff line number Diff line change 1
1
//! Definition of the [`MaybeDone`] combinator.
2
2
3
3
use pin_project_lite:: pin_project;
4
- use std:: future:: Future ;
4
+ use std:: future:: { Future , IntoFuture } ;
5
5
use std:: pin:: Pin ;
6
6
use std:: task:: { Context , Poll } ;
7
7
@@ -22,8 +22,10 @@ pin_project! {
22
22
}
23
23
24
24
/// Wraps a future into a `MaybeDone`.
25
- pub fn maybe_done < Fut : Future > ( future : Fut ) -> MaybeDone < Fut > {
26
- MaybeDone :: Future { future }
25
+ pub fn maybe_done < F : IntoFuture > ( future : F ) -> MaybeDone < F :: IntoFuture > {
26
+ MaybeDone :: Future {
27
+ future : future. into_future ( ) ,
28
+ }
27
29
}
28
30
29
31
impl < Fut : Future > MaybeDone < Fut > {
Original file line number Diff line number Diff line change @@ -495,7 +495,7 @@ doc! {macro_rules! select {
495
495
// We can't use the `pin!` macro for this because `futures` is a
496
496
// tuple and the standard library provides no way to pin-project to
497
497
// the fields of a tuple.
498
- let mut futures = ( $( $fut , ) + ) ;
498
+ let mut futures = ( $( $crate :: macros :: support :: IntoFuture :: into_future ( $ fut) , ) + ) ;
499
499
500
500
// This assignment makes sure that the `poll_fn` closure only has a
501
501
// reference to the futures, instead of taking ownership of them.
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ cfg_macros! {
8
8
}
9
9
}
10
10
11
- pub use std:: future:: Future ;
11
+ pub use std:: future:: { Future , IntoFuture } ;
12
12
pub use std:: pin:: Pin ;
13
13
pub use std:: task:: Poll ;
Original file line number Diff line number Diff line change @@ -159,3 +159,18 @@ async fn a_different_future_is_polled_first_every_time_poll_fn_is_polled() {
159
159
async fn empty_join ( ) {
160
160
assert_eq ! ( tokio:: join!( ) , ( ) ) ;
161
161
}
162
+
163
+ #[ tokio:: test]
164
+ async fn join_into_future ( ) {
165
+ struct NotAFuture ;
166
+ impl std:: future:: IntoFuture for NotAFuture {
167
+ type Output = ( ) ;
168
+ type IntoFuture = std:: future:: Ready < ( ) > ;
169
+
170
+ fn into_future ( self ) -> Self :: IntoFuture {
171
+ std:: future:: ready ( ( ) )
172
+ }
173
+ }
174
+
175
+ tokio:: join!( NotAFuture ) ;
176
+ }
Original file line number Diff line number Diff line change @@ -692,3 +692,20 @@ mod unstable {
692
692
)
693
693
}
694
694
}
695
+
696
+ #[ tokio:: test]
697
+ async fn select_into_future ( ) {
698
+ struct NotAFuture ;
699
+ impl std:: future:: IntoFuture for NotAFuture {
700
+ type Output = ( ) ;
701
+ type IntoFuture = std:: future:: Ready < ( ) > ;
702
+
703
+ fn into_future ( self ) -> Self :: IntoFuture {
704
+ std:: future:: ready ( ( ) )
705
+ }
706
+ }
707
+
708
+ tokio:: select! {
709
+ ( ) = NotAFuture => { } ,
710
+ }
711
+ }
You can’t perform that action at this time.
0 commit comments