(&mut self, key: &str, value: &str)
| 315 | } |
| 316 | |
| 317 | pub(super) fn field(&mut self, key: &str, value: &str) -> &mut Self { |
| 318 | let _ = writeln!(self.buf, "**{key}:** {value}"); |
| 319 | self |
| 320 | } |
| 321 | |
| 322 | pub(super) fn line(&mut self, text: &str) -> &mut Self { |
| 323 | let _ = writeln!(self.buf, "{text}"); |
no outgoing calls
no test coverage detected