Skip to main content

Mountain/RunTime/Execute/
mod.rs

1#![allow(non_snake_case)]
2
3//! Bridge between the declarative `ActionEffect` system and the Echo
4//! work-stealing scheduler. Three entry points: bare `Run` (trait method),
5//! `RunWithTimeout`, and `RunWithRetry`.
6
7pub mod Run;
8pub mod RunWithRetry;
9pub mod RunWithTimeout;