Trait core::future::IntoFuture [−][src]
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
Required methods
Implementors
impl<F: Future> IntoFuture for F[src]
impl<F: Future> IntoFuture for F[src]