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