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§
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