Returns `true` if the outcome is [`Clean`](Self::Clean).
(&self)
| 68 | impl MergeOutcome { |
| 69 | /// Returns `true` if the outcome is [`Clean`](Self::Clean). |
| 70 | pub fn is_clean(&self) -> bool { |
| 71 | matches!(self, Self::Clean(_)) |
| 72 | } |
| 73 | |
| 74 | /// Returns `true` if the outcome is [`AutoMerged`](Self::AutoMerged). |
| 75 | pub fn is_auto_merged(&self) -> bool { |
no outgoing calls
no test coverage detected