Expand description
Streams
This module contains a number of functions for working with Streamss
that return Results, 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_
flatten_ ๐unordered  - try_
fold ๐ - try_
for_ ๐each  - try_
for_ ๐each_ concurrent  - try_
next ๐ - try_
ready_ ๐chunks  - try_
skip_ ๐while  - try_
take_ ๐while  - try_
unfold ๐ 
Structsยง
- ErrInto
 - Stream for the 
err_intomethod. - Inspect
Err  - Stream for the 
inspect_errmethod. - Inspect
Ok  - Stream for the 
inspect_okmethod. - MapErr
 - Stream for the 
map_errmethod. - MapOk
 - Stream for the 
map_okmethod. 
Traitsยง
- TryStream
Ext  - Adapters specific to 
Result-returning streams