Skip to main content

wowlab_engine_ports/
result.rs

1/// Per-chunk simulation output.
2#[derive(Debug)]
3pub struct ChunkReport {
4    pub job_id: String,
5    pub chunk_id: String,
6    pub chunk_index: u32,
7    pub telemetry_bytes: Vec<u8>,
8}