sim 0.1.0

Sim provides a discrete event simulation engine, to facilitate Rust- and npm-based simulation products and projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod exclusive;
pub mod gate;
pub mod generator;
pub mod load_balancer;
pub mod model;
pub mod parallel;
pub mod processor;
pub mod stochastic_gate;
pub mod storage;

#[derive(Debug, Clone)]
pub struct ModelMessage {
    pub port_name: String,
    pub message: String,
}