Expand description
Asynchronous streams.
Traits§
- FusedStream 
- A stream which tracks whether or not the underlying stream should no longer be polled.
- Stream
- A stream of values produced asynchronously.
- TryStream
- A convenience for streams that return Resultvalues that includes a variety of adapters tailored to such futures.
Type Aliases§
- BoxStream
- An owned dynamically typed Streamfor use in cases where you can’t statically type your result or need to add some indirection.
- LocalBoxStream 
- BoxStream, but without the- Sendrequirement.