Trait futures_core::future::IntoFuture [−][src]
pub trait IntoFuture { type Future: Future<Item = Self::Item, Error = Self::Error>; type Item; type Error; fn into_future(self) -> Self::Future; }
Types that can be converted into a future.
This trait is very similar to the IntoIterator
trait.
Associated Types
type Future: Future<Item = Self::Item, Error = Self::Error>
The future that this type can be converted into.
type Item
The item that the future may resolve with.
type Error
The error that the future may resolve with.
Required Methods
fn into_future(self) -> Self::Future
Consumes this object and produces a future.
Implementations on Foreign Types
impl<T> IntoFuture for Option<T> where
T: IntoFuture,
[src]
impl<T> IntoFuture for Option<T> where
T: IntoFuture,
type Future = FutureOption<T::Future>
type Item = Option<T::Item>
type Error = T::Error
fn into_future(self) -> FutureOption<T::Future>
[src]
fn into_future(self) -> FutureOption<T::Future>
impl<T, E> IntoFuture for Result<T, E>
[src]
impl<T, E> IntoFuture for Result<T, E>
type Future = FutureResult<T, E>
type Item = T
type Error = E
fn into_future(self) -> Self::Future
[src]
fn into_future(self) -> Self::Future