(&self)
| 228 | |
| 229 | impl InteractionEncoding for Interaction { |
| 230 | fn encode(&self) -> EncodedInteraction { |
| 231 | ( |
| 232 | self.target, |
| 233 | self.value, |
| 234 | Bytes::copy_from_slice(self.data.as_slice()), |
| 235 | ) |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | impl InteractionEncoding for InteractionData { |
no test coverage detected