(mut self, start: ChangePosition, end: ChangePosition)
| 543 | /// Set the content range using a builder pattern. |
| 544 | #[must_use] |
| 545 | pub fn with_content_range(mut self, start: ChangePosition, end: ChangePosition) -> Self { |
| 546 | self.content_range = Some((start, end)); |
| 547 | self |
| 548 | } |
| 549 | |
| 550 | /// Get the content range. |
| 551 | /// |
no outgoing calls