(mut self, value: bool)
| 225 | } |
| 226 | |
| 227 | pub(crate) const fn with_bold(mut self, value: bool) -> Self { |
| 228 | self.set_bold(value); |
| 229 | self |
| 230 | } |
| 231 | |
| 232 | pub(crate) const fn set_italic(&mut self, value: bool) { |
| 233 | self.italic = value; |
no test coverage detected