style(simulation): cargo fmt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-11 00:15:56 +02:00
co-authored by Claude Opus 4.6
parent 0098ee5a41
commit 0ae3542550
3 changed files with 8 additions and 4 deletions
+4 -2
View File
@@ -55,8 +55,10 @@ impl ChunkGenWorker {
}
pub fn submit(&self, req: ChunkGenRequest, strategy: DeliveryStrategy) {
self.pool
.submit(WorkRequest { payload: req, strategy });
self.pool.submit(WorkRequest {
payload: req,
strategy,
});
}
pub fn drain(&self) -> Vec<(ChunkGenResult, DeliveryStrategy)> {