(mut self, name: &'a str, value: impl fmt::Display)
| 1174 | } |
| 1175 | |
| 1176 | fn metadata(mut self, name: &'a str, value: impl fmt::Display) -> Self { |
| 1177 | self.metadata.push((name, value.to_string())); |
| 1178 | self |
| 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | /// Helper trait for each language to implement which encapsulates |
no test coverage detected