(
mut self,
interactions: impl IntoIterator<Item = InteractionData>,
)
| 176 | } |
| 177 | |
| 178 | pub fn append_post_interactions( |
| 179 | mut self, |
| 180 | interactions: impl IntoIterator<Item = InteractionData>, |
| 181 | ) -> Self { |
| 182 | self.post_interactions.extend(interactions); |
| 183 | self |
| 184 | } |
| 185 | |
| 186 | pub fn with_wrapper(mut self, wrapper: WrapperConfig) -> Self { |
| 187 | self.wrapper = wrapper; |
no test coverage detected