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
Required methods
Implementors
impl<F> IntoFuture for F where
F: Future, [src]
impl<F> IntoFuture for F where
F: Future, [src]