macro_rules! matsu {
($exp:expr) => { ... };
}Expand description
Await future in async context.
Because .await is retarded.
async fn do_async() {
}
async fn my_main() {
cute_async::matsu!(do_async());
}
macro_rules! matsu {
($exp:expr) => { ... };
}Await future in async context.
Because .await is retarded.
async fn do_async() {
}
async fn my_main() {
cute_async::matsu!(do_async());
}