Module tokio_stream::stream_ext
source ยท Re-exportsยง
pub use chain::Chain;
pub use filter::Filter;
pub use filter_map::FilterMap;
pub use fuse::Fuse;
pub use map::Map;
pub use map_while::MapWhile;
pub use merge::Merge;
pub use skip::Skip;
pub use skip_while::SkipWhile;
pub use take::Take;
pub use take_while::TakeWhile;
pub use then::Then;
pub use peekable::Peekable;
pub use timeout::Timeout;
pub use timeout_repeating::TimeoutRepeating;
pub use chunks_timeout::ChunksTimeout;
Modulesยง
- all ๐
- any ๐
- chain ๐
- chunks_timeout ๐
- collect ๐
- filter ๐
- filter_map ๐
- fold ๐
- fuse ๐
- map ๐
- map_while ๐
- merge ๐
- next ๐
- peekable ๐
- skip ๐
- skip_while ๐
- take ๐
- take_while ๐
- then ๐
- throttle ๐Slow down a stream by enforcing a delay between items.
- timeout ๐
- timeout_repeating ๐
- try_next ๐
Traitsยง
- An extension trait for the
Stream
trait that provides a variety of convenient combinator functions.
Functionsยง
- merge_size_hints ๐Merge the size hints from two streams.