(&self, f: &mut fmt::Formatter<'_>)
| 20 | |
| 21 | impl Display for FourCC { |
| 22 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 23 | let bytes = self.0.to_le_bytes(); |
| 24 | |
| 25 | write!(f, "{}", String::from_utf8_lossy(&bytes)) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | impl fmt::Debug for FourCC { |
nothing calls this directly
no outgoing calls
no test coverage detected