(&self)
| 298 | /// Returns `None` for pure deletion hunks. |
| 299 | #[must_use] |
| 300 | pub fn content_range(&self) -> Option<(u64, u64)> { |
| 301 | match (self.content_start, self.content_end) { |
| 302 | (Some(start), Some(end)) => Some((start, end)), |
| 303 | _ => None, |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | /// Get the content length. |
| 308 | /// |