Returns true if this is an edit (no trunk operation).
(&self)
| 251 | |
| 252 | /// Returns true if this is an edit (no trunk operation). |
| 253 | pub fn is_edit(&self) -> bool { |
| 254 | self.trunk_op.is_none() && !self.line_ops.is_empty() |
| 255 | } |
| 256 | |
| 257 | /// Consumes and returns the trunk operation. |
| 258 | pub fn into_trunk_op(self) -> Option<TrunkOp> { |
no test coverage detected