Check if this is a Delete operation.
(&self)
| 159 | |
| 160 | /// Check if this is a Delete operation. |
| 161 | pub fn is_delete(&self) -> bool { |
| 162 | matches!(self, DiffOp::Delete { .. }) |
| 163 | } |
| 164 | |
| 165 | /// Check if this is a Replace operation. |
| 166 | pub fn is_replace(&self) -> bool { |
no outgoing calls