Trait std::future::IntoFuture [−][src]
pub trait IntoFuture {
type Output;
type Future: Future;
fn into_future(self) -> Self::Future;
}
Expand description
Conversion into a Future
.
Associated Types
The output that the future will produce on completion.