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

Method include_deleted

atomic-core/src/output/repo/file.rs:184–187  ·  view source on GitHub ↗

Set whether to include deleted vertices. # Arguments `include` - Whether to include deleted content # Example ```rust use atomic_core::output::repo::FileOutputOptions; let opts = FileOutputOptions::new().include_deleted(true); assert!(opts.include_deleted); ```

(mut self, include: bool)

Source from the content-addressed store, hash-verified

182 /// assert!(opts.include_deleted);
183 /// ```
184 pub fn include_deleted(mut self, include: bool) -> Self {
185 self.include_deleted = include;
186 self
187 }
188
189 /// Set the maximum number of vertices to process.
190 ///

Calls

no outgoing calls