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. - Inspect
Err - Stream for the
inspect_err
method. - Inspect
Ok - Stream for the
inspect_ok
method. - Into
Stream - 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. - TryBuffer
Unordered - Stream for the
try_buffer_unordered
method. - TryBuffered
- Stream for the
try_buffered
method. - TryChunks
- Stream for the
try_chunks
method. - TryChunks
Error - 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. - TryFilter
Map - Stream for the
try_filter_map
method. - TryFlatten
- Stream for the
try_flatten
method. - TryFlatten
Unordered - Stream for the
try_flatten_unordered
method. - TryForward
- Future for the
try_forward
method. - TryNext
- Future for the
try_next
method. - TryReady
Chunks - Stream for the
try_ready_chunks
method. - TryReady
Chunks Error - Error indicating, that while chunk was collected inner stream produced an error.
- TrySkip
While - Stream for the
try_skip_while
method. - TryTake
While - 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. - TryStream
Ext - Adapters specific to
Result
-returning streams
Functions§
- try_
unfold - Creates a
TryStream
from a seed and a closure returning aTryFuture
.