Module stream

Source
Expand description

Composable asynchronous iteration.

Structs§

Buffer
Buffer items and flushes them at each interval.
Debounce
Debounce the stream.
Delay
Delay execution of a stream once for the specified duration.
Interval
A stream representing notifications at fixed interval
Park
Suspend or resume execution of a stream.
Sample
Yield the last value received, if any, at each interval.
Throttle
Filter out all items after the first for a specified time.
Timeout
A stream with timeout time set

Traits§

IntoStream
Conversion into a Stream.
StreamExt
Extend Stream with time-based operations.

Functions§

interval
Creates a new stream that yields at a set interval.