MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / with_content_range

Method with_content_range

atomic-core/src/change/ops.rs:545–548  ·  view source on GitHub ↗
(mut self, start: ChangePosition, end: ChangePosition)

Source from the content-addressed store, hash-verified

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 ///

Calls

no outgoing calls