#generator #async #stable #async-await #gen

macro async-gen-macros

Async generator in stable rust using async/await

4 releases (2 breaking)

0.3.0 Jul 9, 2023
0.2.1 Jun 24, 2023
0.2.0 Jun 22, 2023
0.1.0 Jun 20, 2023

#47 in #gen

Download history 18/week @ 2024-03-15 10/week @ 2024-03-22 18/week @ 2024-03-29 24/week @ 2024-04-05 26/week @ 2024-04-12 27/week @ 2024-04-19 122/week @ 2024-04-26 126/week @ 2024-05-03 41/week @ 2024-05-10 48/week @ 2024-05-17 55/week @ 2024-05-24 66/week @ 2024-05-31 57/week @ 2024-06-07 40/week @ 2024-06-14 20/week @ 2024-06-21 6/week @ 2024-06-28

130 downloads per month
Used in async-gen

MIT license

5KB
106 lines

This library provides a way to create asynchronous generator using the async/await feature in stable Rust.

Installation

Add it as a dependency to your Rust project by adding the following line to your Cargo.toml file:

[dependencies]
async-gen = "0.2"

Examples

use std::pin::pin;
use async_gen::{gen, GeneratorState};

#[tokio::main]
async fn main() {
    let g = gen! {
        yield 42;
        return "42"
    };
    let mut g = pin!(g);
    assert_eq!(g.resume().await, GeneratorState::Yielded(42));
    assert_eq!(g.resume().await, GeneratorState::Complete("42"));
}

No runtime deps