(
mut self,
interactions: impl IntoIterator<Item = InteractionData>,
)
| 160 | } |
| 161 | |
| 162 | pub fn append_pre_interactions( |
| 163 | mut self, |
| 164 | interactions: impl IntoIterator<Item = InteractionData>, |
| 165 | ) -> Self { |
| 166 | self.pre_interactions.extend(interactions); |
| 167 | self |
| 168 | } |
| 169 | |
| 170 | pub fn append_main_interactions( |
| 171 | mut self, |
no test coverage detected