-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add IntoFuture Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com> * blanket impl for IntoFuture Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com> * cargo fmt Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com> * example Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com> * mark as unstable Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
- Loading branch information
1 parent
23beab4
commit 237cfa0
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
use crate::future::Future; | ||
|
||
/// Convert a type into a `Future`. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// use async_std::future::{Future, IntoFuture}; | ||
/// use async_std::io; | ||
/// use async_std::pin::Pin; | ||
/// | ||
/// struct Client; | ||
/// | ||
/// impl Client { | ||
/// pub async fn send(self) -> io::Result<()> { | ||
/// // Send a request | ||
/// Ok(()) | ||
/// } | ||
/// } | ||
/// | ||
/// impl IntoFuture for Client { | ||
/// type Output = io::Result<()>; | ||
/// | ||
/// type Future = Pin<Box<dyn Future<Output = Self::Output>>>; | ||
/// | ||
/// fn into_future(self) -> Self::Future { | ||
/// Box::pin(async { | ||
/// self.send().await | ||
/// }) | ||
/// } | ||
/// } | ||
/// ``` | ||
#[cfg(any(feature = "unstable", feature = "docs"))] | ||
#[cfg_attr(feature = "docs", doc(cfg(unstable)))] | ||
pub trait IntoFuture { | ||
/// The type of value produced on completion. | ||
type Output; | ||
|
||
/// Which kind of future are we turning this into? | ||
type Future: Future<Output = Self::Output>; | ||
|
||
/// Create a future from a value | ||
fn into_future(self) -> Self::Future; | ||
} | ||
|
||
impl<T: Future> IntoFuture for T { | ||
type Output = T::Output; | ||
|
||
type Future = T; | ||
|
||
fn into_future(self) -> Self::Future { | ||
self | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters