Trait core::future::IntoFuture [−][src]
pub trait IntoFuture { type Output; type Future: Future<Output = Self::Output>; fn into_future(self) -> Self::Future; }
Conversion into a Future
.
Associated Types
type Output
[src]
The output that the future will produce on completion.
type Future: Future<Output = Self::Output>
[src]
Which kind of future are we turning this into?
Required methods
Loading content...Implementors
Loading content...