pub trait FutureFrom<T>: Sized {
    type Future: Future<Item = Self, Error = Self::Error>;
    type Error;
    fn future_from(_: T) -> Self::Future;
}
Expand description

Asynchronous conversion from a type T.

This trait is analogous to std::convert::From, adapted to asynchronous computation.

Associated Types

The future for the conversion.

Possible errors during conversion.

Required methods

Consume the given value, beginning the conversion.

Implementors