Module try_stream

Source
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_into method.
InspectErr
Stream for the inspect_err method.
InspectOk
Stream for the inspect_ok method.
MapErr
Stream for the map_err method.
MapOk
Stream for the map_ok method.

Traitsยง

TryStreamExt
Adapters specific to Result-returning streams