Trait futures_state_stream::StreamExt [] [src]

pub trait StreamExt: Stream {
    fn into_state_stream<S>(self, state: S) -> FromStream<Self, S>
    where
        Self: Sized
, { ... } }

An extension trait adding functionality to Stream.

Provided Methods

Returns a StateStream yielding the items of this stream with a state.

Implementors