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

Method paths

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

Source from the content-addressed store, hash-verified

125 /// Other modified files will be ignored.
126 #[must_use]
127 pub fn paths(mut self, paths: Vec<impl Into<String>>) -> Self {
128 self.paths = paths.into_iter().map(Into::into).collect();
129 self
130 }
131
132 /// Add a single path to record.
133 #[must_use]

Calls 1

into_iterMethod · 0.45