Concurrency and async
📄️ Overview
For each of Rust and Dart, we support the synchronous and asynchronous grammar.
📄️ Synchronous Rust (thread pool)
You can write normal (non-async) Rust functions (fn f() {}).
📄️ Asynchronous Rust
The async Rust functions, async fn f() {}, are supported as well.
📄️ Synchronous Dart
In order to generate synchronous functions in Dart,
📄️ Asynchronous Dart
This library generates functions that are asynchronous in Dart by default. So you will see fn f(..) -> String becomes Future f(..) with that interesting Future.