Trait core::future::IntoFuture [−][src]
pub trait IntoFuture {
type Output;
type Future: Future<Output = Self::Output>;
fn into_future(self) -> Self::Future;
}This is supported on non-crate feature
miri-test-libstd or test or doctest only.Expand description
Conversion into a Future.
Associated Types
The output that the future will produce on completion.