1 2 3 4 5 6 7 8 9
use split_async::split; #[split] async fn sub_func() {} #[split] async fn func() { choose!(sub_func)(); }