Expand description
Stream utilities for Tokio.
A Stream
is an asynchronous sequence of values. It can be thought of as an asynchronous version of the standard library’s Iterator
trait.
This module provides helpers to work with them.
Structs
Combine many streams into one, indexing each source stream with a unique key.
Traits
Convert from a Stream
.
A stream of values produced asynchronously.
An extension trait for Stream
s that provides a variety of convenient
combinator functions.