(mut self, files: Vec<PathBuf>)
| 492 | /// Set the added files list. |
| 493 | #[must_use] |
| 494 | pub fn with_added(mut self, files: Vec<PathBuf>) -> Self { |
| 495 | self.added = files; |
| 496 | self |
| 497 | } |
| 498 | |
| 499 | /// Set the deleted files list. |
| 500 | #[must_use] |
no outgoing calls