Skip to content

Commit dd1d371

Browse files
authored
macros: accept IntoFuture args for macros (#6710)
1 parent 6a1a7b1 commit dd1d371

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

tokio/src/future/maybe_done.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Definition of the [`MaybeDone`] combinator.
22
33
use pin_project_lite::pin_project;
4-
use std::future::Future;
4+
use std::future::{Future, IntoFuture};
55
use std::pin::Pin;
66
use std::task::{Context, Poll};
77

@@ -22,8 +22,10 @@ pin_project! {
2222
}
2323

2424
/// 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+
}
2729
}
2830

2931
impl<Fut: Future> MaybeDone<Fut> {

tokio/src/macros/select.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ doc! {macro_rules! select {
495495
// We can't use the `pin!` macro for this because `futures` is a
496496
// tuple and the standard library provides no way to pin-project to
497497
// the fields of a tuple.
498-
let mut futures = ( $( $fut , )+ );
498+
let mut futures = ( $( $crate::macros::support::IntoFuture::into_future($fut) , )+ );
499499

500500
// This assignment makes sure that the `poll_fn` closure only has a
501501
// reference to the futures, instead of taking ownership of them.

tokio/src/macros/support.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ cfg_macros! {
88
}
99
}
1010

11-
pub use std::future::Future;
11+
pub use std::future::{Future, IntoFuture};
1212
pub use std::pin::Pin;
1313
pub use std::task::Poll;

tokio/tests/macros_join.rs

+15
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,18 @@ async fn a_different_future_is_polled_first_every_time_poll_fn_is_polled() {
159159
async fn empty_join() {
160160
assert_eq!(tokio::join!(), ());
161161
}
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+
}

tokio/tests/macros_select.rs

+17
Original file line numberDiff line numberDiff line change
@@ -692,3 +692,20 @@ mod unstable {
692692
)
693693
}
694694
}
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+
}

0 commit comments

Comments
 (0)