(&self, string: T)
| 397 | |
| 398 | #[inline] |
| 399 | pub fn format_string<T: FormatBuf>(&self, string: T) -> T { |
| 400 | self.format_string_with_precision(string, self.precision.as_ref()) |
| 401 | } |
| 402 | |
| 403 | #[inline] |
| 404 | pub fn format_char<T: FormatBuf>(&self, ch: T::Char) -> T { |
nothing calls this directly
no test coverage detected