Expand description
Tools for dealing with streams
Structs§
- Breaker
- Return type of
StreamExt::breaker - Sync
Stream - A
Send + Syncstream ofT, fed over a channel by a pump (a future) running on the source’s thread — letting a!Sendsource stream be consumed whereSend/Syncis required. - Truncated
- Marks that a
SyncStreamwas cut short: its pump (or source) was dropped before the source finished, so theOkitems before it are only a prefix of the source. By contract it is the final item the stream yields — nothing follows it. - Until
Overridden By - Return type of
StreamExt::until_overridden_by.