(value: &ReportItem)
| 282 | |
| 283 | impl From<&ReportItem> for ChangeItemInfo { |
| 284 | fn from(value: &ReportItem) -> Self { |
| 285 | Self { fuzzy_match_percent: value.fuzzy_match_percent, size: value.size } |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | impl AddAssign for Measures { |
nothing calls this directly
no test coverage detected