Check if this status represents an untracked file.
(&self)
| 195 | |
| 196 | /// Check if this status represents an untracked file. |
| 197 | pub fn is_untracked(&self) -> bool { |
| 198 | matches!(self, FileStatus::Untracked) |
| 199 | } |
| 200 | |
| 201 | /// Check if this status represents a conflict. |
| 202 | pub fn is_conflicted(&self) -> bool { |
no outgoing calls
no test coverage detected