(&self, f: &mut std::fmt::Formatter<'_>)
| 54 | |
| 55 | impl Display for MetadataMismatch { |
| 56 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 57 | write!( |
| 58 | f, |
| 59 | "{}: {} => {}\n{}: {} => {}", |
| 60 | self.first.file_name, |
| 61 | self.first.key, |
| 62 | self.first.value, |
| 63 | self.second.file_name, |
| 64 | self.second.key, |
| 65 | self.second.value |
| 66 | ) |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /// An error that can occur when dealing with package input directories and package files. |
nothing calls this directly
no outgoing calls
no test coverage detected