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

Method paths

atomic-repository/src/record/options.rs:120–123  ·  view source on GitHub ↗
(mut self, paths: Vec<impl Into<String>>)

Source from the content-addressed store, hash-verified

118 /// Other modified files will be ignored.
119 #[must_use]
120 pub fn paths(mut self, paths: Vec<impl Into<String>>) -> Self {
121 self.paths = paths.into_iter().map(Into::into).collect();
122 self
123 }
124
125 /// Add a single path to record.
126 #[must_use]

Calls 1

into_iterMethod · 0.45