(&self, formatter: &mut fmt::Formatter<'_>)
| 79 | impl fmt::Debug for CodePoint { |
| 80 | #[inline] |
| 81 | fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 82 | write!(formatter, "U+{:04X}", self.value) |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | impl fmt::Display for CodePoint { |
nothing calls this directly
no test coverage detected