Trait tokio::prelude::IntoFuture
source · [−]pub trait IntoFuture {
type Future: Future;
type Item;
type Error;
fn into_future(self) -> Self::Future;
}
Expand description
Class of types which can be converted into a future.
This trait is very similar to the IntoIterator
trait and is intended to be
used in a very similar fashion.
Associated Types
Required methods
fn into_future(self) -> Self::Future
fn into_future(self) -> Self::Future
Consumes this object and produces a future.