Struct futures_state_stream::FlattenStateStream [] [src]

pub struct FlattenStateStream<F>(_)
where
    F: Future
;

A stream which evaluates a future and then then stream returned by it.

Trait Implementations

impl<F, E, S> StateStream for FlattenStateStream<F> where
    F: Future<Error = (E, S)>,
    F::Item: StateStream<Error = E, State = S>, 
[src]

The items being streamed.

The state returned when streaming completes.

The error returned.

[src]

Similar to Stream::poll. Read more

[src]

Returns a future which yields the next element of the stream.

[src]

Returns a normal Stream which yields the elements of this stream and discards the state.

[src]

Returns a stream which applies a transform to items of this stream.

[src]

Returns a stream which applies a transform to errors of this stream.

[src]

Returns a stream which applies a transform to the state of this stream.

[src]

Returns a stream which filters items of this stream by a predicate.

[src]

Returns a stream which filters and transforms items of this stream by a predicate.

[src]

Returns a stream which collects all items of this stream into a Vec, returning it along with the stream's state. Read more

[src]

Returns a future which applies a closure to each item of this stream.