Module futures_util::try_stream[][src]

Streams

This module contains a number of functions for working with Streamss that return Results, allowing for short-circuiting computations.

Structs

ErrInto

Stream for the err_into combinator.

MapErr

Stream for the map_err combinator.

MapOk

Stream for the map_ok combinator.

TryCollect

A future which attempts to collect all of the values of a stream.

TryForEach

A stream combinator which attempts to execute an async closure over each future in a stream.

TryNext

A future which attempts to collect all of the values of a stream.

Traits

TryStreamExt

Adapters specific to Result-returning streams