(mut self, orders: impl IntoIterator<Item = Order>)
| 155 | |
| 156 | impl SimulationBuilder { |
| 157 | pub fn with_orders(mut self, orders: impl IntoIterator<Item = Order>) -> Self { |
| 158 | self.orders = orders.into_iter().collect(); |
| 159 | self |
| 160 | } |
| 161 | |
| 162 | pub fn append_pre_interactions( |
| 163 | mut self, |