Module stream

Module stream 

Available on crate feature stream only.
Expand description

Async stream utilities.

This module re-exports commonly used stream traits and types from the futures crate, providing a convenient way to work with asynchronous streams.

Structs§

Iter
Stream for the iter function.

Traits§

Stream
A stream of values produced asynchronously.
StreamExt
An extension trait for Streams that provides a variety of convenient combinator functions.
TryStreamExt
Adapters specific to Result-returning streams

Functions§

iter
Converts an Iterator into a Stream which is always ready to yield the next value.