des_sim/primitive/id.rs
1//! The `id` module provides unique identifier types for events and sources
2//! within the simulation.
3//!
4//! These IDs (`EventId` and `SourceId`) are essential for tracking and
5//! managing individual simulation components, ensuring that each entity
6//! can be uniquely referenced.
7
8mod event_id;
9mod source_id;
10
11pub use event_id::EventId;
12pub use source_id::SourceId;