sandbox_quant/execution/
close_all.rs1use crate::domain::identifiers::BatchId;
2use crate::execution::close_symbol::CloseSymbolResult;
3
4#[derive(Debug, Clone, PartialEq, Eq)]
5pub struct CloseAllBatchResult {
6 pub batch_id: BatchId,
7 pub results: Vec<CloseSymbolResult>,
8}