(mut self, paths: Vec<impl Into<String>>)
| 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] |