Trait tokio::prelude::IntoFuture

source ·
pub trait IntoFuture {
    type Future: Future<Item = Self::Item, Error = Self::Error>;
    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.

Required Associated Types§

The future that this type can be converted into.

The item that the future may resolve with.

The error that the future may resolve with.

Required Methods§

Consumes this object and produces a future.

Implementations on Foreign Types§

Implementors§