This library provides a way to create asynchronous generator using the async/await
feature in stable Rust.
Add it as a dependency to your Rust project by adding the following line to your Cargo.toml
file:
toml
[dependencies]
async-gen = "0.1"
```rust use std::pin::pin; use async_gen::{gen, GeneratorState};
async fn main() { let g = gen! { yield 42; return "foo" }; let mut g = pin!(g); asserteq!(g.resume().await, GeneratorState::Yielded(42)); asserteq!(g.resume().await, GeneratorState::Complete("foo")); } ```