(&mut self, output: &mut String, text: &str, theme: &ColorTheme)
| 209 | } |
| 210 | |
| 211 | fn append_styled(&mut self, output: &mut String, text: &str, theme: &ColorTheme) { |
| 212 | let styled = self.style_text(text, theme); |
| 213 | self.append_raw(output, &styled); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | #[derive(Debug)] |
no test coverage detected