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