Skip to main content

rust_supervisor/role/context/
mod.rs

1//! Role-specific context wrappers.
2//!
3//! Context wrappers expose the narrow capability set each role needs while the
4//! runtime keeps owning the complete task context.
5
6pub mod job;
7pub mod service;
8pub mod sidecar;
9pub mod supervisor;
10pub mod worker;