asupersync-macros 0.4.2

Proc macros for asupersync structured concurrency runtime
Documentation
1
2
3
4
5
6
use asupersync_macros::select;

fn main() {
    // Each select branch needs `binding = future => handler`; the `=>` is missing.
    let _ = select!(cx, { a = fut_a() a });
}