Trait futures_state_stream::StreamExt [] [src]

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

An extension trait adding functionality to Stream.

Provided Methods

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

Implementors