Module stream

Source
Expand description

Platform-specific stream utilities.

This module provides a unified BoxStream + StreamExt class for working with boxed streams across different platforms. On native platforms, streams can be Send, but on Wasm they cannot. This module abstracts over that difference.

Traits§

StreamExt
An extension trait for Streams that provides a variety of convenient combinator functions.

Type Aliases§

BoxStream
An owned dynamically typed Stream for use in cases where you can’t statically type your result or need to add some indirection.