Trait futures_compat::futures_01::FutureInto02 [] [src]

pub trait FutureInto02: Future01 {
    fn into_02_compat(self) -> Future01As02<Self>
    where
        Self: Sized
; }

A trait to convert any Future from v0.1 into a Future01As02.

Implemented for all types that implement v0.1's Future automatically.

Required Methods

Converts this future into a Future01As02.

Implementors