Expand description
Utilities for working with streams that return Result values.
Structs§
- AndThen
- Stream for the
and_thenmethod. - ErrInto
- Stream for the
err_intomethod. - Inspect
Err - Stream for the
inspect_errmethod. - Inspect
Ok - Stream for the
inspect_okmethod. - Into
Stream - Stream for the
into_streammethod. - MapErr
- Stream for the
map_errmethod. - MapOk
- Stream for the
map_okmethod. - OrElse
- Stream for the
or_elsemethod. - TryAll
- Future for the
try_allmethod. - TryAny
- Future for the
try_anymethod. - TryBuffer
Unordered - Stream for the
try_buffer_unorderedmethod. - TryBuffered
- Stream for the
try_bufferedmethod. - TryChunks
- Stream for the
try_chunksmethod. - TryChunks
Error - Error indicating, that while chunk was collected inner stream produced an error.
- TryCollect
- Future for the
try_collectmethod. - TryConcat
- Future for the
try_concatmethod. - TryFilter
- Stream for the
try_filtermethod. - TryFilter
Map - Stream for the
try_filter_mapmethod. - TryFlatten
- Stream for the
try_flattenmethod. - TryFlatten
Unordered - Stream for the
try_flatten_unorderedmethod. - TryForward
- Future for the
try_forwardmethod. - TryNext
- Future for the
try_nextmethod. - TryReady
Chunks - Stream for the
try_ready_chunksmethod. - TryReady
Chunks Error - Error indicating, that while chunk was collected inner stream produced an error.
- TrySkip
While - Stream for the
try_skip_whilemethod. - TryTake
While - Stream for the
try_take_whilemethod. - TryUnfold
- Stream for the
try_unfoldfunction.
Traits§
- TryStream
- A convenience for streams that return
Resultvalues that includes a variety of adapters tailored to such futures. - TryStream
Ext - Adapters specific to
Result-returning streams
Functions§
- try_
unfold - Creates a
TryStreamfrom a seed and a closure returning aTryFuture.