Skip to main content

rust_supervisor/role/
mod.rs

1//! Role contract API for supervised units.
2//!
3//! This module owns user-facing role contracts and adapters that bridge those
4//! contracts into the existing task factory runtime.
5
6pub mod adapter;
7pub mod context;
8pub mod lifecycle;
9pub mod result;
10pub mod templates;
11pub mod traits;