(
interactions: impl IntoIterator<Item = &'a I>,
)
| 257 | } |
| 258 | |
| 259 | pub fn encode_interactions<'a, I>( |
| 260 | interactions: impl IntoIterator<Item = &'a I>, |
| 261 | ) -> Vec<EncodedInteraction> |
| 262 | where |
| 263 | I: InteractionEncoding + 'a, |
| 264 | { |
| 265 | interactions.into_iter().map(|i| i.encode()).collect() |
| 266 | } |
| 267 | |
| 268 | #[derive(Clone, Debug)] |
| 269 | pub struct WrapperCall { |
no test coverage detected