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

Method paths

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

Source from the content-addressed store, hash-verified

110 /// Other modified files will be ignored.
111 #[must_use]
112 pub fn paths(mut self, paths: Vec<impl Into<String>>) -> Self {
113 self.paths = paths.into_iter().map(Into::into).collect();
114 self
115 }
116
117 /// Add a single path to record.
118 #[must_use]

Calls 1

into_iterMethod · 0.45