Trait async_std::future::IntoFuture [−][src]
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 }) } }
Associated Types
type Output
[src]
The type of value produced on completion.
type Future: Future<Output = Self::Output>
[src]
Which kind of future are we turning this into?
Required methods
fn into_future(self) -> Self::Future
[src]
Create a future from a value