Module futures_util::stream::try_stream
source ยท Expand description
Streams
This module contains a number of functions for working with Streams
s
that return Result
s, allowing for short-circuiting computations.
Re-exportsยง
pub use self::and_then::AndThen;
pub use self::into_stream::IntoStream;
pub use self::or_else::OrElse;
pub use self::try_next::TryNext;
pub use self::try_for_each::TryForEach;
pub use self::try_filter::TryFilter;
pub use self::try_filter_map::TryFilterMap;
pub use self::try_flatten::TryFlatten;
pub use self::try_flatten_unordered::TryFlattenUnordered;
pub use self::try_collect::TryCollect;
pub use self::try_concat::TryConcat;
pub use self::try_chunks::TryChunks;
pub use self::try_chunks::TryChunksError;
pub use self::try_ready_chunks::TryReadyChunks;
pub use self::try_ready_chunks::TryReadyChunksError;
pub use self::try_fold::TryFold;
pub use self::try_unfold::try_unfold;
pub use self::try_unfold::TryUnfold;
pub use self::try_skip_while::TrySkipWhile;
pub use self::try_take_while::TryTakeWhile;
pub use self::try_buffer_unordered::TryBufferUnordered;
pub use self::try_buffered::TryBuffered;
pub use self::try_for_each_concurrent::TryForEachConcurrent;
pub use self::into_async_read::IntoAsyncRead;
pub use self::try_all::TryAll;
pub use self::try_any::TryAny;
Modulesยง
- and_then ๐
- into_async_read ๐
- into_stream ๐
- or_else ๐
- try_all ๐
- try_any ๐
- try_buffer_unordered ๐
- try_buffered ๐
- try_chunks ๐
- try_collect ๐
- try_concat ๐
- try_filter ๐
- try_filter_map ๐
- try_flatten ๐
- try_fold ๐
- try_for_each ๐
- try_next ๐
- try_ready_chunks ๐
- try_skip_while ๐
- try_take_while ๐
- try_unfold ๐
Structsยง
- Stream for the
err_into
method. - Stream for the
inspect_err
method. - Stream for the
inspect_ok
method. - Stream for the
map_err
method. - Stream for the
map_ok
method.
Traitsยง
- Adapters specific to
Result
-returning streams