(&self, f: &mut fmt::Formatter<'_>)
| 119 | |
| 120 | impl fmt::Display for SemanticDiffStats { |
| 121 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 122 | write!( |
| 123 | f, |
| 124 | "{} insertions(+), {} deletions(-), {} modifications(~), {} token changes", |
| 125 | self.lines_added, |
| 126 | self.lines_deleted, |
| 127 | self.lines_modified, |
| 128 | self.total_token_changes() |
| 129 | ) |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | /// The result of a semantic diff operation. |
nothing calls this directly
no test coverage detected