pub trait IntoFuture {
type Future: Future<Item = Self::Item, Error = Self::Error>;
type Item;
type Error;
// Required method
fn into_future(self) -> Self::Future;
}
Expand description
Types that can be converted into a future.
This trait is very similar to the IntoIterator
trait.
Required Associated Types§
Required Methods§
Sourcefn into_future(self) -> Self::Future
fn into_future(self) -> Self::Future
Consumes this object and produces a future.