Module try_stream

Module try_stream 

Source
Expand description

Utilities for working with streams that return Result values.

Structs§

AndThen
Stream for the and_then method.
ErrInto
Stream for the err_into method.
InspectErr
Stream for the inspect_err method.
InspectOk
Stream for the inspect_ok method.
IntoStream
Stream for the into_stream method.
MapErr
Stream for the map_err method.
MapOk
Stream for the map_ok method.
OrElse
Stream for the or_else method.
TryAll
Future for the try_all method.
TryAny
Future for the try_any method.
TryBufferUnordered
Stream for the try_buffer_unordered method.
TryBuffered
Stream for the try_buffered method.
TryChunks
Stream for the try_chunks method.
TryChunksError
Error indicating, that while chunk was collected inner stream produced an error.
TryCollect
Future for the try_collect method.
TryConcat
Future for the try_concat method.
TryFilter
Stream for the try_filter method.
TryFilterMap
Stream for the try_filter_map method.
TryFlatten
Stream for the try_flatten method.
TryFlattenUnordered
Stream for the try_flatten_unordered method.
TryForward
Future for the try_forward method.
TryNext
Future for the try_next method.
TryReadyChunks
Stream for the try_ready_chunks method.
TryReadyChunksError
Error indicating, that while chunk was collected inner stream produced an error.
TrySkipWhile
Stream for the try_skip_while method.
TryTakeWhile
Stream for the try_take_while method.
TryUnfold
Stream for the try_unfold function.

Traits§

TryStream
A convenience for streams that return Result values that includes a variety of adapters tailored to such futures.
TryStreamExt
Adapters specific to Result-returning streams

Functions§

try_unfold
Creates a TryStream from a seed and a closure returning a TryFuture.