Check if this status represents a clean (unchanged) file.
(&self)
| 205 | |
| 206 | /// Check if this status represents a clean (unchanged) file. |
| 207 | pub fn is_clean(&self) -> bool { |
| 208 | matches!(self, FileStatus::Clean) |
| 209 | } |
| 210 | |
| 211 | /// Get a short code for this status (for display). |
| 212 | /// |
no test coverage detected