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§
Traits§
- Stream
- A stream of values produced asynchronously.
- Stream
Ext - An extension trait for
Streams that provides a variety of convenient combinator functions. - TryStream
Ext - Adapters specific to
Result-returning streams
Functions§
- iter
- Converts an
Iteratorinto aStreamwhich is always ready to yield the next value.