Trait futures_state_stream::FutureExt [] [src]

pub trait FutureExt: Future {
    fn flatten_state_stream(self) -> FlattenStateStream<Self>
    where
        Self: Sized,
        Self::Item: StateStream<Error = Self::Error>
, { ... } }

An extension trait adding functionality to Future.

Provided Methods

Returns a stream which evaluates this future and then the resulting stream.

Implementors