Skip to main content

des_sim/
context.rs

1//! The `context` module provides various context objects that allow interaction with the simulation environment.
2//!
3//! These contexts are passed to models, sources, and hooks, enabling them to schedule events,
4//! access simulation time, and interact with other parts of the simulation.
5
6mod event;
7mod executor;
8mod source;
9mod user;
10
11pub use event::*;
12pub use executor::*;
13pub use source::*;
14pub use user::*;