Expand description
Asynchronous generator-like functionality in stable Rust.
Structs§
Enums§
- Generator
State - Emitted state from an async generator.
Functions§
- generate
- Produces an asynchronous
Stream
ofGeneratorState<I, R>
by invoking the given closure with a handle that can be used to yield items.