Rust AppView - highly experimental!
at experiments 6 lines 131 B view raw
1// runtime-tokio 2pub type Arc<T> = std::sync::Arc<T>; 3 4pub type Mutex<T> = tokio::sync::Mutex<T>; 5 6pub use tokio::task::yield_now;