pub enum BatsimEvent {
SIMULATION_BEGINS {
timestamp: f64,
data: SimulationBegins,
},
JOB_SUBMITTED {
timestamp: f64,
data: JobSubmitted,
},
SIMULATION_ENDS {
timestamp: f64,
},
JOB_COMPLETED {
timestamp: f64,
data: JobCompleted,
},
JOB_KILLED {
timestamp: f64,
data: JobKilled,
},
EXECUTE_JOB {
timestamp: f64,
data: ExecuteJob,
},
REJECT_JOB {
timestamp: f64,
data: RejectJob,
},
KILL_JOB {
timestamp: f64,
data: KillJob,
},
SUBMIT_JOB {
timestamp: f64,
data: SubmitJob,
},
NOTIFY {
timestamp: f64,
data: Notify,
},
}
Variants
SIMULATION_BEGINS
Fields of SIMULATION_BEGINS
JOB_SUBMITTED
Fields of JOB_SUBMITTED
SIMULATION_ENDS
Fields of SIMULATION_ENDS
JOB_COMPLETED
Fields of JOB_COMPLETED
JOB_KILLED
Fields of JOB_KILLED
EXECUTE_JOB
Fields of EXECUTE_JOB
REJECT_JOB
Fields of REJECT_JOB
KILL_JOB
Fields of KILL_JOB
SUBMIT_JOB
Fields of SUBMIT_JOB
NOTIFY
Fields of NOTIFY
Trait Implementations
Formats the value using the given formatter.