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